Skip to content

Commit db2aba9

Browse files
committed
fix(yaml): Quote/comment templating syntax
The update script (.scripts/update_helm_charts.py) skipped these files
1 parent 9331550 commit db2aba9

29 files changed

Lines changed: 83 additions & 83 deletions

demos/argo-cd-git-ops/manifests/airflow-postgres/sealed-airflow-postgres-credentials.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ spec:
1818
namespace: stackable-airflow
1919
labels:
2020
stackable.tech/vendor: Stackable
21-
stackable.tech/demo: {{ DEMO }}
21+
stackable.tech/demo: "{{ DEMO }}"
2222
type: Opaque

demos/argo-cd-git-ops/manifests/airflow/airflow.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
name: airflow
66
labels:
77
stackable.tech/vendor: Stackable
8-
stackable.tech/demo: {{ DEMO }}
8+
stackable.tech/demo: "{{ DEMO }}"
99
spec:
1010
image:
1111
productVersion: 3.2.2

demos/argo-cd-git-ops/manifests/airflow/sealed-airflow-credentials.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ spec:
2323
namespace: stackable-airflow
2424
labels:
2525
stackable.tech/vendor: Stackable
26-
stackable.tech/demo: {{ DEMO }}
26+
stackable.tech/demo: "{{ DEMO }}"
2727
type: Opaque

demos/argo-cd-git-ops/manifests/airflow/sealed-airflow-minio-connection.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ spec:
1515
namespace: stackable-airflow
1616
labels:
1717
stackable.tech/vendor: Stackable
18-
stackable.tech/demo: {{ DEMO }}
18+
stackable.tech/demo: "{{ DEMO }}"
1919
type: Opaque

demos/argo-cd-git-ops/manifests/minio/sealed-minio-credentials.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ spec:
1616
namespace: minio
1717
labels:
1818
stackable.tech/vendor: Stackable
19-
stackable.tech/demo: {{ DEMO }}
19+
stackable.tech/demo: "{{ DEMO }}"
2020
type: Opaque

stacks/_templates/argo-cd.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ options:
99
global:
1010
additionalLabels:
1111
stackable.tech/vendor: Stackable
12-
stackable.tech/stack: {{ STACK }}
12+
stackable.tech/stack: "{{ STACK }}"
1313
# The following is a Jinja2 template directive, not a regular comment.
1414
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
1515
# {% if DEMO is defined %}
16-
stackable.tech/demo: {{ DEMO }}
16+
stackable.tech/demo: "{{ DEMO }}"
1717
# {% endif %}
1818
configs:
1919
secret:

stacks/_templates/minio-distributed-small-tls/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
additionalLabels:
33
stackable.tech/vendor: Stackable
4-
stackable.tech/stack: {{ STACK }}
4+
stackable.tech/stack: "{{ STACK }}"
55
# The following is a Jinja2 template directive, not a regular comment.
66
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
77
# {% if DEMO is defined %}
8-
stackable.tech/demo: {{ DEMO }}
8+
stackable.tech/demo: "{{ DEMO }}"
99
# {% endif %}
1010
podLabels:
1111
stackable.tech/vendor: Stackable
12-
stackable.tech/stack: {{ STACK }}
12+
stackable.tech/stack: "{{ STACK }}"
1313
# The following is a Jinja2 template directive, not a regular comment.
1414
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
1515
# {% if DEMO is defined %}
16-
stackable.tech/demo: {{ DEMO }}
16+
stackable.tech/demo: "{{ DEMO }}"
1717
# {% endif %}
1818
rootUser: admin
1919
rootPassword: adminadmin

stacks/_templates/minio-distributed-tls/values.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
---
22
additionalLabels:
33
stackable.tech/vendor: Stackable
4-
stackable.tech/stack: {{ STACK }}
4+
stackable.tech/stack: "{{ STACK }}"
55
# The following is a Jinja2 template directive, not a regular comment.
66
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
77
# {% if DEMO is defined %}
8-
stackable.tech/demo: {{ DEMO }}
8+
stackable.tech/demo: "{{ DEMO }}"
99
# {% endif %}
1010
podLabels:
1111
stackable.tech/vendor: Stackable
12-
stackable.tech/stack: {{ STACK }}
12+
stackable.tech/stack: "{{ STACK }}"
1313
# The following is a Jinja2 template directive, not a regular comment.
1414
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
1515
# {% if DEMO is defined %}
16-
stackable.tech/demo: {{ DEMO }}
16+
stackable.tech/demo: "{{ DEMO }}"
1717
# {% endif %}
1818
rootUser: admin
1919
rootPassword: adminadmin

stacks/_templates/minio.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,22 +8,22 @@ version: 5.4.0 # RELEASE.2024-12-18T13-15-44Z
88
options:
99
additionalLabels:
1010
stackable.tech/vendor: Stackable
11-
stackable.tech/stack: {{ STACK }}
11+
stackable.tech/stack: "{{ STACK }}"
1212
# The following is a Jinja2 template directive, not a regular comment.
1313
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
1414
# {% if DEMO is defined %}
15-
stackable.tech/demo: {{ DEMO }}
15+
stackable.tech/demo: "{{ DEMO }}"
1616
# {% endif %}
1717
podLabels:
1818
stackable.tech/vendor: Stackable
19-
stackable.tech/stack: {{ STACK }}
19+
stackable.tech/stack: "{{ STACK }}"
2020
# The following is a Jinja2 template directive, not a regular comment.
2121
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
2222
# {% if DEMO is defined %}
23-
stackable.tech/demo: {{ DEMO }}
23+
stackable.tech/demo: "{{ DEMO }}"
2424
# {% endif %}
2525
rootUser: admin
26-
rootPassword: {{ minioAdminPassword }}
26+
rootPassword: "{{ minioAdminPassword }}"
2727
mode: standalone
2828
persistence:
2929
size: 10Gi

stacks/_templates/opensearch-dashboards.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ name: opensearch-dashboards
44
repo:
55
name: opensearch-dashboards
66
url: https://opensearch-project.github.io/helm-charts
7-
version: {{ opensearchVersion }}
7+
version: "{{ opensearchVersion }}"
88
options:
99
image:
1010
repository: oci.stackable.tech/sdp/opensearch-dashboards
1111
tag: "{{ opensearchVersion }}-stackable{{ stackableReleaseVersion }}"
1212
labels:
1313
stackable.tech/vendor: Stackable
14-
stackable.tech/stack: {{ STACK }}
14+
stackable.tech/stack: "{{ STACK }}"
1515
# The following is a Jinja2 template directive, not a regular comment.
1616
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
1717
# {% if DEMO is defined %}
18-
stackable.tech/demo: {{ DEMO }}
18+
stackable.tech/demo: "{{ DEMO }}"
1919
# {% endif %}
2020
service:
2121
type: NodePort
@@ -25,11 +25,11 @@ options:
2525
stackable.tech/logging-credentials-secret: opensearch-user
2626
labels:
2727
stackable.tech/vendor: Stackable
28-
stackable.tech/stack: {{ STACK }}
28+
stackable.tech/stack: "{{ STACK }}"
2929
# The following is a Jinja2 template directive, not a regular comment.
3030
# The `#` prefix is required to prevent YAML parsing errors, but Jinja2 still processes it.
3131
# {% if DEMO is defined %}
32-
stackable.tech/demo: {{ DEMO }}
32+
stackable.tech/demo: "{{ DEMO }}"
3333
# {% endif %}
3434
opensearchHosts: null # Use the discovery ConfigMap instead
3535
extraEnvs:

0 commit comments

Comments
 (0)