Skip to content
Merged
Changes from all 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
19 changes: 14 additions & 5 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 Down Expand Up @@ -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 %}