helm-charts/opendmarc/templates/configmap.yaml

12 lines
198 B
YAML
Raw Normal View History

2021-01-17 01:09:41 +00:00
{{- range $key, $val := .Values.opendmarc.configmaps }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: opendmarc-{{ $key }}
data:
{{ $key | indent 2 }}: |
{{ $val | indent 4 }}
{{- end }}
---