diff options
author | Mandeep Khinda <Mandeep.Khinda@amdocs.com> | 2018-03-26 20:20:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-03-26 20:20:04 +0000 |
commit | bdcf44857f459c2f335a63dd33185194988f0263 (patch) | |
tree | bf5f92cf3b7b034992ae443c29ed1904b0db3c26 /kubernetes/common/mysql/templates/configmap.yaml | |
parent | ee394eae027102d875c600e28f57ca8486c77f2e (diff) | |
parent | 003d7290a65a9df52e049b9c824dfb20a2b6d253 (diff) |
Merge "Add fix for build dependecies"
Diffstat (limited to 'kubernetes/common/mysql/templates/configmap.yaml')
-rw-r--r-- | kubernetes/common/mysql/templates/configmap.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/kubernetes/common/mysql/templates/configmap.yaml b/kubernetes/common/mysql/templates/configmap.yaml new file mode 100644 index 0000000000..dd2b5b7db2 --- /dev/null +++ b/kubernetes/common/mysql/templates/configmap.yaml @@ -0,0 +1,18 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "common.fullname" . }}-db-configmap + namespace: {{ include "common.namespace" . }} +data: + master.cnf: | + # Apply this config only on the master. + [mysqld] + log-bin + [localpathprefix] + master + slave.cnf: | + # Apply this config only on slaves. + [mysqld] + super-read-only + [localpathprefix] + slave |