From 74e8485b0852c7ca3f011b59bb00dbfdb993bc73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C5=A9=20Qu=E1=BB=91c=20Phong?= Date: Tue, 24 May 2022 16:33:29 +0700 Subject: [PATCH] [bitnami/mysql] fix mysql slave auth after applying helm (#10378) Signed-off-by: Vu Quoc Phong --- bitnami/mysql/Chart.yaml | 2 +- bitnami/mysql/templates/secrets.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bitnami/mysql/Chart.yaml b/bitnami/mysql/Chart.yaml index 0e8081448..9734558d5 100644 --- a/bitnami/mysql/Chart.yaml +++ b/bitnami/mysql/Chart.yaml @@ -25,4 +25,4 @@ name: mysql sources: - https://github.com/bitnami/bitnami-docker-mysql - https://mysql.com -version: 9.0.4 +version: 9.0.5 diff --git a/bitnami/mysql/templates/secrets.yaml b/bitnami/mysql/templates/secrets.yaml index ad789722e..6da5327cb 100644 --- a/bitnami/mysql/templates/secrets.yaml +++ b/bitnami/mysql/templates/secrets.yaml @@ -16,6 +16,6 @@ data: mysql-root-password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "common.names.fullname" .) "key" "mysql-root-password" "length" 10 "providedValues" (list "auth.rootPassword") "context" $) }} mysql-password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "common.names.fullname" .) "key" "mysql-password" "length" 10 "providedValues" (list "auth.password") "context" $) }} {{- if eq .Values.architecture "replication" }} - mysql-replication-password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "common.names.fullname" .) "key" "mysql-replication-password" "length" 10 "providedValues" (list "auth.replicationPassword") "context" $) | b64enc | quote }} + mysql-replication-password: {{ include "common.secrets.passwords.manage" (dict "secret" (include "common.names.fullname" .) "key" "mysql-replication-password" "length" 10 "providedValues" (list "auth.replicationPassword") "context" $) }} {{- end }} {{- end }}