From 89e7d428fd408a781b22be55b13bcfe19e8bf046 Mon Sep 17 00:00:00 2001 From: rjshrjndrn Date: Thu, 17 Oct 2024 10:57:14 +0200 Subject: [PATCH] fix(helm): variable Signed-off-by: rjshrjndrn --- scripts/helmcharts/databases/templates/job.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/helmcharts/databases/templates/job.yaml b/scripts/helmcharts/databases/templates/job.yaml index db5f14202..20092e9cf 100644 --- a/scripts/helmcharts/databases/templates/job.yaml +++ b/scripts/helmcharts/databases/templates/job.yaml @@ -17,15 +17,15 @@ spec: image: postgres:13 env: - name: PGUSER - value: {{.Values.postgres.postgresqlUser}} + value: {{.Values.postgresql.postgresqlUser}} - name: PGPASSWORD - value: {{.Values.postgres.postgresqlPassword}} # current password + value: {{.Values.postgresql.postgresqlPassword}} # current password - name: PGPASSWORD_OLD - value: {{.Values.postgres.oldPostgresqlPassword}} # old password + value: {{.Values.postgresql.oldPostgresqlPassword}} # old password - name: PGHOST - value: {{.Values.postgres.postgresqlHost}} + value: {{.Values.postgresql.postgresqlHost}} - name: PGPORT - value: {{.Values.postgres.postgresqlPort}} + value: {{.Values.postgresql.postgresqlPort}} command: ["/bin/bash", "-c", "--"] args: - |