mirror of
https://github.com/jlengrand/engine.git
synced 2026-03-10 08:11:21 +00:00
12 lines
268 B
YAML
12 lines
268 B
YAML
{{- if .Values.master.config }}
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "mysql.master.fullname" . }}
|
|
labels: {{- include "mysql.labels" . | nindent 4 }}
|
|
component: master
|
|
data:
|
|
my.cnf: |-
|
|
{{ .Values.master.config | indent 4 }}
|
|
{{- end -}}
|