2bd74e1baf
Upgrade openstack-helm-infra to below version. commit 34d54f2812b7d54431d548cff08fe8da7f838124 Date: Sat Apr 11 15:24:54 2020 +0200 Cleanup py27 support and docs Below 3 patches are removed as they are already merged. Allow-multiple-containers-per-daemonset-pod.patch Add-TLS-support-for-Gnocchi-public-endpoint.patch Update ingress chart for Helm v3 Story: 2007474 Task: 39394 Change-Id: Icf624c8a0a6c74c8cfdb75ad45162e4a7aa5e404 Signed-off-by: Zhipeng Liu <zhipengs.liu@intel.com>
33 lines
963 B
Diff
33 lines
963 B
Diff
From 8e6de1efc32797f3ba1bc166b2b70992b3399022 Mon Sep 17 00:00:00 2001
|
|
From: "Chen, Yan" <yan.chen@intel.com>
|
|
Date: Fri, 29 May 2020 05:04:30 +0000
|
|
Subject: [PATCH] mariadb: use utf8_general_ci collation as default
|
|
|
|
Mariadb is using utf8_general_ci as the default collation:
|
|
- https://mariadb.com/kb/en/mariadb/supported-character-sets-and-collations/
|
|
|
|
Thus the collation server in the helm charts should be utf8_general_ci
|
|
instead of utf8_unicode_ci.
|
|
|
|
Signed-off-by: Chen, Yan <yan.chen@intel.com>
|
|
---
|
|
mariadb/values.yaml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/mariadb/values.yaml b/mariadb/values.yaml
|
|
index c7a70d2..7bc4497 100755
|
|
--- a/mariadb/values.yaml
|
|
+++ b/mariadb/values.yaml
|
|
@@ -307,7 +307,7 @@ conf:
|
|
[mysqld]
|
|
# Charset
|
|
character_set_server=utf8
|
|
- collation_server=utf8_unicode_ci
|
|
+ collation_server=utf8_general_ci
|
|
skip-character-set-client-handshake
|
|
|
|
# Logging
|
|
--
|
|
1.8.3.1
|
|
|