aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Geissler <andreas-geissler@telekom.de>2023-10-05 15:10:34 +0200
committerAndreas Geissler <andreas-geissler@telekom.de>2023-10-05 15:14:39 +0200
commit5faef933c24e27e439bd109c29a0278f43e95968 (patch)
tree55b02eec2f3e100881c530fe7bb275c82b64aa86
parentcfd8434fe9484b9219560159094b174421d6d6a2 (diff)
[MARIADB] Set mTLS mode to STRICT to solve mysql connection issues
The DISABLE setting for mysql ports lead to failing mysql connections therefor STRICT is used to fix initial connections see (https://istio.io/latest/about/faq/#mysql-with-mtls) Issue-ID: OOM-3236 Change-Id: I56c34400dc73c71b936a51260efd776349adaeae Signed-off-by: Andreas Geissler <andreas-geissler@telekom.de>
-rw-r--r--kubernetes/common/mariadb-galera/templates/service.yaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/kubernetes/common/mariadb-galera/templates/service.yaml b/kubernetes/common/mariadb-galera/templates/service.yaml
index 4cabde1e4d..2dea4e9ac1 100644
--- a/kubernetes/common/mariadb-galera/templates/service.yaml
+++ b/kubernetes/common/mariadb-galera/templates/service.yaml
@@ -34,6 +34,6 @@ spec:
app: {{ include "common.servicename" . }}
portLevelMtls:
'{{ .Values.service.internalPort }}':
- mode: DISABLE
+ mode: STRICT
{{- end }}
{{- end }}