Skip to content

Commit a17d725

Browse files
committed
fix: update PostgreSQL secret key for Bitnami chart 12.1.5
The new Bitnami PostgreSQL chart version 12.1.5 uses 'password' as the secret key instead of 'postgresql-password'. This change aligns the DolphinScheduler Helm chart with the new Bitnami chart format. This fix resolves the E2E-K8S test failure caused by the post-install hook timing out when trying to read the PostgreSQL password from the wrong secret key.
1 parent 05ce8ba commit a17d725

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/kubernetes/dolphinscheduler/templates/_helpers.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ Create a database environment variables.
170170
secretKeyRef:
171171
{{- if .Values.postgresql.enabled }}
172172
name: {{ template "dolphinscheduler.postgresql.fullname" . }}
173-
key: postgresql-password
173+
key: password
174174
{{- else if .Values.mysql.enabled }}
175175
name: {{ template "dolphinscheduler.mysql.fullname" . }}
176176
key: mysql-password

0 commit comments

Comments
 (0)