Skip to content

Commit 0bf6f3c

Browse files
authored
Fix markdown in overview.md.j2 once more (#1145)
* Fix markdown in overview.md.j2 once more Signed-off-by: Matthias Büchse <matthias.buechse@alasca.cloud> * Sort subjects within a group to have a predictable order Signed-off-by: Matthias Büchse <matthias.buechse@alasca.cloud> --------- Signed-off-by: Matthias Büchse <matthias.buechse@alasca.cloud>
1 parent c1d0b74 commit 0bf6f3c

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

compliance-monitor/templates/details.md.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Jump to
1010

1111
{# assume that there is just one scope for each subject (the same one) -#}
1212
{% set _sr = results.values() | first %}{% set scopeuuid = _sr.keys() | first -%}
13-
{% for subject, subject_result in results.items() -%}
14-
- [{{subject}}](#{{subject}}) {{ subject_result[scopeuuid] | summary }}
13+
{% for subject in results | sort -%}
14+
- [{{subject}}](#{{subject}}) {{ results[subject][scopeuuid] | summary }}
1515
{% endfor %}
1616
{% endif %}
1717
{% for subject, subject_result in results.items() -%}

compliance-monitor/templates/overview.md.j2

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@ we could of course iterate over results etc., but hardcode the table (except the
33
for the time being to have the highest degree of control
44
-#}
55

6-
{% if unverified %}This table shows the most recent results, including unverified ones. Consumers are referred to the [verified table]({{base_url}}page/table). **Beware of false positives!**{% else %}This table shows the most recent **verified** results.{% endif %}
6+
{% if unverified %}These tables show the most recent results, including unverified ones. Consumers are referred to the [verified tables]({{base_url}}page/table). **Beware of false positives!**{% else %}These tables show the most recent **verified** results.{% endif %}
77

88
Version numbers are suffixed by a symbol depending on state: * for _draft_, † for _warn_ (soon to be deprecated), and †† for _deprecated_.
99

10+
### SCS-compatible IaaS
11+
1012
{% set iaas = '50393e6f-2ae1-4c5c-a62c-3b75f2abef3f' -%}
1113
| Name | Description | Operator | [SCS-compatible IaaS](https://docs.scs.community/standards/scs-compatible-iaas/) | HealthMon |
1214
|-------|--------------|-----------|----------------------|:----------:|
@@ -42,11 +44,13 @@ Version numbers are suffixed by a symbol depending on state: * for _draft_, †
4244
| [HM](https://health.wavestack1.sovereignit.cloud:3000/) |
4345
{% if unverified -%}
4446
{# this section currently empty -#}
45-
{% endif -%}
47+
{% endif %}
48+
49+
### SCS-compatible KaaS
4650

47-
{% set kaas = '1fffebe6-fd4b-44d3-a36c-fc58b4bb0180' %}
51+
{% set kaas = '1fffebe6-fd4b-44d3-a36c-fc58b4bb0180' -%}
4852
| Name | Description | Operator | [SCS-compatible KaaS](https://docs.scs.community/standards/scs-compatible-kaas/) |
49-
|-------|--------------|-----------|----------------------|:----------:|
53+
|-------|--------------|-----------|----------------------|
5054
| [Syself](https://syself.com/) | KaaS offering based on ClusterStacks | Syself GmbH | {# #}
5155
{#- #} [{{ results | pick(kaas, 'syself-1.32', 'syself-1.33', 'syself-1.34') | summary }}]({{ detail_url('group-syself', kaas) }}) {# -#}
5256
|

0 commit comments

Comments
 (0)