Markus Pesch
725ed970be
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
329 B
YAML
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 }}
|