helm-charts/roundcube/templates/config.yaml

17 lines
468 B
YAML
Raw Normal View History

2021-01-17 01:09:41 +00:00
{{- if .Values.configs -}}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ template "roundcube.fullname" . }}-config
labels:
app.kubernetes.io/name: {{ include "roundcube.name" . }}
helm.sh/chart: {{ include "roundcube.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
data:
{{- range $key, $value := .Values.configs }}
{{ $key }}: |-
{{ $value | indent 4 }}
{{- end }}
{{- end }}