argocd-helm/charts/argocd-notifications/templates/secret.yaml
georgekaz ba467c8a4b
feat(argocd-notifications): update to support argocd-notification v1.0.1 (#567)
Signed-off-by: George Kaz <egeorgekaz@gmail.com>
2021-02-03 12:48:19 -08:00

13 lines
No EOL
312 B
YAML

{{ if .Values.secret.create }}
apiVersion: v1
kind: Secret
metadata:
name: {{ include "argocd-notifications.name" . }}-secret
labels:
{{- include "argocd-notifications.labels" . | nindent 4 }}
type: Opaque
stringData:
{{- with .Values.secret.items }}
{{ toYaml . | indent 2 }}
{{- end }}
{{- end }}