Signed-off-by: Vitaliy Fuks <vitaliyf@users.noreply.github.com> Co-authored-by: Alexander Matyushentsev <Alexander_Matyushentsev@intuit.com>
13 lines
314 B
YAML
13 lines
314 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 . | nindent 2 }}
|
|
{{- end }}
|
|
{{- end }}
|