From 5e12a9cb25f19165ca7913aed48d03fc8883f142 Mon Sep 17 00:00:00 2001 From: liquidrinu Date: Sat, 24 May 2025 00:46:28 +0200 Subject: [PATCH] fix: quote postgres env values for Helm rendering --- chart/templates/postgres-deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chart/templates/postgres-deployment.yaml b/chart/templates/postgres-deployment.yaml index fceff3b..9769b68 100644 --- a/chart/templates/postgres-deployment.yaml +++ b/chart/templates/postgres-deployment.yaml @@ -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