diff options
author | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2018-05-08 11:09:18 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-05-08 11:09:18 +0000 |
commit | adec0ca4af857e52d689faae9520547d9ad26d73 (patch) | |
tree | 2e10714c383a7dfe657aa52a1d0d73e4e23532fd /kubernetes/common | |
parent | ecae704305d9e4affaf58b4cfa1966f713cb1dc1 (diff) | |
parent | e863502d368c7559af04f6b87f89d06b2e20b850 (diff) |
Merge "Update mysql configuration file to change sql_mode"
Diffstat (limited to 'kubernetes/common')
-rw-r--r-- | kubernetes/common/mysql/templates/configmap.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kubernetes/common/mysql/templates/configmap.yaml b/kubernetes/common/mysql/templates/configmap.yaml index ff127e48cd..d8c29fb551 100644 --- a/kubernetes/common/mysql/templates/configmap.yaml +++ b/kubernetes/common/mysql/templates/configmap.yaml @@ -23,12 +23,14 @@ data: master.cnf: | # Apply this config only on the master. [mysqld] + sql_mode = "NO_ENGINE_SUBSTITUTION" log-bin [localpathprefix] master slave.cnf: | # Apply this config only on slaves. [mysqld] + sql_mode = "NO_ENGINE_SUBSTITUTION" super-read-only [localpathprefix] slave |