2020-06-09 14:33:29 -04:00
|
|
|
{{ 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:
|
2021-02-03 20:48:19 +00:00
|
|
|
{{- with .Values.secret.items }}
|
2021-02-09 19:56:44 -05:00
|
|
|
{{ toYaml . | nindent 2 }}
|
2021-02-03 20:48:19 +00:00
|
|
|
{{- end }}
|
2021-02-09 19:56:44 -05:00
|
|
|
{{- end }}
|