From 997fc6a528835d91222dcee9808b1232ae8b8d0b Mon Sep 17 00:00:00 2001 From: chisaato Date: Wed, 22 May 2024 17:41:07 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A7=A6=E5=8F=91CI=20=E4=B8=80?= =?UTF-8?q?=E4=BA=9B=E6=A0=BC=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: chisaato --- charts/dragonfly/templates/manager/manager-configmap.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/dragonfly/templates/manager/manager-configmap.yaml b/charts/dragonfly/templates/manager/manager-configmap.yaml index cfbd5400..d9a50636 100644 --- a/charts/dragonfly/templates/manager/manager-configmap.yaml +++ b/charts/dragonfly/templates/manager/manager-configmap.yaml @@ -34,7 +34,7 @@ data: {{- if or .Values.mysql.enable .Values.externalMysql.host }} type: mysql mysql: - {{- if and .Values.mysql.enable (empty .Values.externalMysql.host)}} + {{- if and .Values.mysql.enable (empty .Values.externalMysql.host) }} user: {{ .Values.mysql.auth.username }} password: {{ .Values.mysql.auth.password }} host: {{ .Release.Name }}-{{ default "mysql" .Values.mysql.fullname }}.{{ .Release.Namespace }}.svc.{{ .Values.clusterDomain }}