roundcube-charts/templates/secrets.yaml
Markus Pesch 725ed970be
All checks were successful
continuous-integration/drone/push Build is passing
Initial Commit
2021-08-22 19:41:23 +02:00

16 lines
329 B
YAML

apiVersion: v1
kind: Secret
metadata:
name: {{ include "roundcube.fullname" . }}
type: Opaque
stringData:
{{- if not (hasKey .Values "config") -}}
{{- $_ := set .Values "config" dict -}}
{{- end -}}
{{/* SETUP CONFIG */}}
{{ range $key, $value := .Values.config }}
{{ upper $key}}: {{ quote $value }}
{{ end }}