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

12 lines
198 B
YAML

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