Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 15 additions & 6 deletions stacks/argo-cd-git-ops/applicationsets/stackable-operators.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ kind: ApplicationSet
metadata:
name: stackable-operators
spec:
goTemplate: true
generators:
- matrix:
generators:
Expand All @@ -23,7 +24,7 @@ spec:
- operator: opensearch
- operator: spark-k8s
- operator: superset
- operator: trino
- operator: trinov
- operator: zookeeper
- list:
elements:
Expand All @@ -33,7 +34,7 @@ spec:
# {% raw %}
template:
metadata:
name: "{{ operator }}-operator"
name: "{{ .operator }}-operator"
spec:
project: stackable-operators
ignoreDifferences:
Expand All @@ -46,12 +47,12 @@ spec:
- .spec.versions[].additionalPrinterColumns | select(. == [])
source:
repoURL: "oci.stackable.tech"
targetRevision: "{{ targetRevision }}"
chart: "sdp-charts/{{ operator }}-operator"
targetRevision: "{{ .targetRevision }}"
chart: "sdp-charts/{{ .operator }}-operator"
helm:
releaseName: "{{ operator }}-operator"
releaseName: "{{ .operator }}-operator"
destination:
server: "{{ server }}"
server: "{{ .server }}"
namespace: stackable-operators
syncPolicy:
syncOptions:
Expand All @@ -61,4 +62,12 @@ spec:
automated:
selfHeal: true
prune: true
templatePatch: |
{{- if eq .operator "listener" }}
spec:
source:
helm:
values: |
preset: stable-nodes
{{- end }}
# {% endraw %}