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"
description: A Helm chart for Argo CD, a declarative, GitOps continuous delivery tool for Kubernetes.
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
icon: https://argo-cd.readthedocs.io/en/stable/assets/logo.png
sources:

View file

@ -15,8 +15,11 @@ data:
{{- with .Values.notifications.notifiers }}
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with .Values.notifications.subscriptions }}
subscriptions: |
{{- with .Values.notifications.subscriptions }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.cf-notifications.subscriptions }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.notifications.templates }}
@ -25,4 +28,14 @@ data:
{{- with .Values.notifications.triggers }}
{{- toYaml . | nindent 2 }}
{{- 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 }}