diff --git a/bitnami/mysql/Chart.yaml b/bitnami/mysql/Chart.yaml index 1fc4db5961..55a40c61d8 100644 --- a/bitnami/mysql/Chart.yaml +++ b/bitnami/mysql/Chart.yaml @@ -25,4 +25,4 @@ name: mysql sources: - https://github.com/bitnami/containers/tree/main/bitnami/mysql - https://mysql.com -version: 9.8.1 +version: 9.8.2 diff --git a/bitnami/mysql/templates/secrets.yaml b/bitnami/mysql/templates/secrets.yaml index e2aa4438f2..65574366d9 100644 --- a/bitnami/mysql/templates/secrets.yaml +++ b/bitnami/mysql/templates/secrets.yaml @@ -43,7 +43,7 @@ data: type: {{ print "mysql" | b64enc | quote }} host: {{ print $host | b64enc | quote }} port: {{ print $port | b64enc | quote }} - user: {{ print "root" | b64enc | quote }} + username: {{ print "root" | b64enc | quote }} password: {{ print $rootPassword | b64enc | quote }} uri: {{ printf "mysql://root:%s@%s:%s" $rootPassword $host $port | b64enc | quote }} @@ -68,7 +68,7 @@ data: type: {{ print "mysql" | b64enc | quote }} host: {{ print $host | b64enc | quote }} port: {{ print $port | b64enc | quote }} - user: {{ print .Values.auth.username | b64enc | quote }} + username: {{ print .Values.auth.username | b64enc | quote }} {{- if $database }} database: {{ print $database | b64enc | quote }} {{- end }}