Skip to content

Commit 1e930eb

Browse files
committed
fix: Add missing demo labels
1 parent c636c74 commit 1e930eb

26 files changed

Lines changed: 103 additions & 1 deletion

stacks/_templates/argo-cd.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ options:
1010
additionalLabels:
1111
stackable.tech/vendor: Stackable
1212
stackable.tech/stack: {{ STACK }}
13+
{% if DEMO is defined %}
14+
stackable.tech/demo: {{ DEMO }}
15+
{% endif %}
1316
configs:
1417
secret:
1518
argocdServerAdminPassword: "{{ argocdAdminPassword }}"

stacks/_templates/keycloak.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ spec:
7474
labels:
7575
stackable.tech/vendor: Stackable
7676
stackable.tech/stack: {{ STACK }}
77+
{% if DEMO is defined %}
78+
stackable.tech/demo: {{ DEMO }}
79+
{% endif %}
7780
spec:
7881
provider:
7982
oidc:

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
---
22
additionalLabels:
33
stackable.tech/vendor: Stackable
4+
stackable.tech/stack: {{ STACK }}
5+
{% if DEMO is defined %}
6+
stackable.tech/demo: {{ DEMO }}
7+
{% endif %}
48
podLabels:
59
stackable.tech/vendor: Stackable
10+
stackable.tech/stack: {{ STACK }}
11+
{% if DEMO is defined %}
12+
stackable.tech/demo: {{ DEMO }}
13+
{% endif %}
614
rootUser: admin
715
rootPassword: adminadmin
816
mode: distributed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
additionalLabels:
22
stackable.tech/vendor: Stackable
33
stackable.tech/stack: {{ STACK }}
4+
{% if DEMO is defined %}
5+
stackable.tech/demo: {{ DEMO }}
6+
{% endif %}
47
podLabels:
58
stackable.tech/vendor: Stackable
69
stackable.tech/stack: {{ STACK }}
10+
{% if DEMO is defined %}
11+
stackable.tech/demo: {{ DEMO }}
12+
{% endif %}
713
rootUser: admin
814
rootPassword: adminadmin
915
mode: distributed

stacks/_templates/minio.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,15 @@ options:
99
additionalLabels:
1010
stackable.tech/vendor: Stackable
1111
stackable.tech/stack: {{ STACK }}
12+
{% if DEMO is defined %}
13+
stackable.tech/demo: {{ DEMO }}
14+
{% endif %}
1215
podLabels:
1316
stackable.tech/vendor: Stackable
1417
stackable.tech/stack: {{ STACK }}
18+
{% if DEMO is defined %}
19+
stackable.tech/demo: {{ DEMO }}
20+
{% endif %}
1521
rootUser: admin
1622
rootPassword: {{ minioAdminPassword }}
1723
mode: standalone

stacks/_templates/opensearch-dashboards.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ options:
1212
labels:
1313
stackable.tech/vendor: Stackable
1414
stackable.tech/stack: {{ STACK }}
15+
{% if DEMO is defined %}
16+
stackable.tech/demo: {{ DEMO }}
17+
{% endif %}
1518
service:
1619
type: NodePort
1720
port: 5601
@@ -21,6 +24,9 @@ options:
2124
labels:
2225
stackable.tech/vendor: Stackable
2326
stackable.tech/stack: {{ STACK }}
27+
{% if DEMO is defined %}
28+
stackable.tech/demo: {{ DEMO }}
29+
{% endif %}
2430
opensearchHosts: null # Use the discovery ConfigMap instead
2531
extraEnvs:
2632
- name: OPENSEARCH_HOSTS

stacks/_templates/postgresql-airflow.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ options:
99
commonLabels:
1010
stackable.tech/vendor: Stackable
1111
stackable.tech/stack: {{ STACK }}
12+
{% if DEMO is defined %}
13+
stackable.tech/demo: {{ DEMO }}
14+
{% endif %}
1215
auth:
1316
username: airflow
1417
password: airflow

stacks/_templates/postgresql-druid.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ options:
99
commonLabels:
1010
stackable.tech/vendor: Stackable
1111
stackable.tech/stack: {{ STACK }}
12+
{% if DEMO is defined %}
13+
stackable.tech/demo: {{ DEMO }}
14+
{% endif %}
1215
auth:
1316
username: druid
1417
password: druid

stacks/_templates/postgresql-hive-iceberg.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ options:
99
commonLabels:
1010
stackable.tech/vendor: Stackable
1111
stackable.tech/stack: {{ STACK }}
12+
{% if DEMO is defined %}
13+
stackable.tech/demo: {{ DEMO }}
14+
{% endif %}
1215
auth:
1316
username: hive
1417
password: hive

stacks/_templates/postgresql-hive.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ options:
99
commonLabels:
1010
stackable.tech/vendor: Stackable
1111
stackable.tech/stack: {{ STACK }}
12+
{% if DEMO is defined %}
13+
stackable.tech/demo: {{ DEMO }}
14+
{% endif %}
1215
auth:
1316
username: hive
1417
password: hive

0 commit comments

Comments
 (0)