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 - containerPort: 5432
env: env:
- name: POSTGRES_DB - name: POSTGRES_DB
value: {{ .Values.postgres.dbName }} value: "{{ .Values.postgres.dbName }}"
- name: POSTGRES_USER - name: POSTGRES_USER
value: {{ .Values.postgres.user }} value: "{{ .Values.postgres.user }}"
- name: POSTGRES_PASSWORD - name: POSTGRES_PASSWORD
value: {{ .Values.postgres.password }} value: "{{ .Values.postgres.password }}"
volumeMounts: volumeMounts:
- mountPath: /var/lib/postgresql/data - mountPath: /var/lib/postgresql/data
name: postgres-data name: postgres-data