helm-charts/postfix/templates/configmap.yaml
2021-01-17 04:09:41 +03:00

12 lines
191 B
YAML

{{- range $key, $val := .Values.postfix.configmaps }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: postfix-{{ $key }}
data:
{{ $key | indent 2 }}: |
{{ $val | indent 4 }}
{{- end }}