Skip to content

Commit

Permalink
Fix ref POSTGRES_USER
Browse files Browse the repository at this point in the history
Fix reference to POSTGRES_USER variable in postgres template for kubernetes
  • Loading branch information
tvandenabbeel-spotit authored Oct 4, 2024
1 parent d4f5a9e commit c2313a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/kubernetes/charts/templates/postgres.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
value: {{ .Values.postgres.POSTGRES_DB | quote }}

- name: POSTGRES_USER # Setting Database username
value: {{ .Values.postgres.POSTGRES_ADMIN_USER | quote }}
value: {{ .Values.postgres.POSTGRES_USER | quote }}

- name: POSTGRES_PASSWORDD # Setting Database password
value: {{ .Values.postgres.POSTGRES_PASSWORD | quote }}
Expand Down Expand Up @@ -101,4 +101,4 @@ spec:
- port: {{ .Values.postgres.service.port }}
selector:
app: {{ .Values.postgres.app }}
---
---

0 comments on commit c2313a3

Please sign in to comment.