github.com/verrazzano/verrazzano@v1.7.0/platform-operator/thirdparty/charts/mysql/templates/configmap_configurationfiles.yaml (about) 1 {{- if .Values.configurationFiles }} 2 {{- $cluster_name := default "mysql" .Release.Name }} 3 apiVersion: v1 4 kind: ConfigMap 5 metadata: 6 name: {{ $cluster_name }}-configuration 7 namespace: {{ .Release.Namespace }} 8 data: 9 {{- range $key, $val := .Values.configurationFiles }} 10 {{ $key }}: |- 11 {{ $val | indent 4}} 12 {{- end }} 13 {{- end -}}