Skip to content

Commit

Permalink
Wrapping create-user-job by double quote for Helm Chart (apache#14723)
Browse files Browse the repository at this point in the history
When UI default user password includes a special character like `$`, it occurs error in helm.
  • Loading branch information
loustler authored Mar 12, 2021
1 parent c9a7314 commit 1e6398f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chart/templates/create-user-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ spec:
- "-l"
- {{ .Values.webserver.defaultUser.lastName }}
- "-p"
- {{ .Values.webserver.defaultUser.password }}
- "{{ .Values.webserver.defaultUser.password }}"
envFrom:
{{- include "custom_airflow_environment_from" . | default "\n []" | indent 10 }}
env:
Expand Down

0 comments on commit 1e6398f

Please sign in to comment.