updating helm/docker files and database config files
[it/otf.git] / otf-helm / otf / charts / databases / mysqldb / templates / configurationFiles-configmap.yaml
1 {{- if .Values.configurationFiles }}
2 apiVersion: v1
3 kind: ConfigMap
4 metadata:
5   name: {{ template "mysql.fullname" . }}-configuration
6   namespace: {{ .Release.Namespace }}
7 data:
8 {{- range $key, $val := .Values.configurationFiles }}
9   {{ $key }}: |-
10 {{ $val | indent 4}}
11 {{- end }}
12 {{- end -}}