fix: quote postgres env values for Helm rendering
Some checks failed
Deploy to Production / Build and Deploy (push) Failing after 6m8s

This commit is contained in:
liquidrinu 2025-05-24 00:46:28 +02:00
parent fa08e6de1b
commit 5e12a9cb25

@ -19,11 +19,11 @@ spec:
- containerPort: 5432
env:
- name: POSTGRES_DB
value: {{ .Values.postgres.dbName }}
value: "{{ .Values.postgres.dbName }}"
- name: POSTGRES_USER
value: {{ .Values.postgres.user }}
value: "{{ .Values.postgres.user }}"
- name: POSTGRES_PASSWORD
value: {{ .Values.postgres.password }}
value: "{{ .Values.postgres.password }}"
volumeMounts:
- mountPath: /var/lib/postgresql/data
name: postgres-data