argocd-helm/charts/argocd-notifications/templates/secret.yaml
Petr Drastil 91e6e0749a
fix(argocd-notifications): Use correct names for ConfigMap and Secret (#898)
Signed-off-by: Petr Drastil <petr.drastil@gmail.com>
2021-08-25 14:14:13 +02:00

13 lines
291 B
YAML

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