add .Values.cf-notifications overrides to argocd-notifications-cm

This commit is contained in:
Noam Gal 2024-05-12 17:43:33 +03:00
parent 03731935c4
commit 2872af2f22
No known key found for this signature in database
2 changed files with 17 additions and 4 deletions

View file

@ -3,7 +3,7 @@ appVersion: v2.10-2024.3.29-1dcc54e29
kubeVersion: ">=1.23.0-0" kubeVersion: ">=1.23.0-0"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes. description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd name: argo-cd
version: 6.7.18-cap-2.10-2024.3.29-1dcc54e29 version: 6.7.18-1-cap-2.10-2024.3.29-1dcc54e29
home: https://github.com/argoproj/argo-helm home: https://github.com/argoproj/argo-helm
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources: sources:

View file

@ -15,14 +15,27 @@ data:
{{- with .Values.notifications.notifiers }} {{- with .Values.notifications.notifiers }}
{{- toYaml . | nindent 2 }} {{- toYaml . | nindent 2 }}
{{- end }} {{- end }}
{{- with .Values.notifications.subscriptions }}
subscriptions: | subscriptions: |
{{- toYaml . | nindent 4 }} {{- with .Values.notifications.subscriptions }}
{{- end }} {{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.cf-notifications.subscriptions }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.notifications.templates }} {{- with .Values.notifications.templates }}
{{- toYaml . | nindent 2 }} {{- toYaml . | nindent 2 }}
{{- end }} {{- end }}
{{- with .Values.notifications.triggers }} {{- with .Values.notifications.triggers }}
{{- toYaml . | nindent 2 }} {{- toYaml . | nindent 2 }}
{{- end }} {{- end }}
{{- with .Values.cf-notifications.notifiers }}
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with .Values.cf-notifications.templates }}
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with .Values.cf-notifications.triggers }}
{{- toYaml . | nindent 2 }}
{{- end }}
{{- end }} {{- end }}