From d97166f36d5743f15b203df16db5786016e3f3e5 Mon Sep 17 00:00:00 2001 From: Lelian Thorel Date: Fri, 20 Feb 2026 09:08:19 +0100 Subject: [PATCH] fix(postgres): typo in postgres.yaml template. --- deploy/kubernetes/charts/templates/postgres.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/deploy/kubernetes/charts/templates/postgres.yaml b/deploy/kubernetes/charts/templates/postgres.yaml index 09ca30fda..c51ff941d 100644 --- a/deploy/kubernetes/charts/templates/postgres.yaml +++ b/deploy/kubernetes/charts/templates/postgres.yaml @@ -1,5 +1,5 @@ {{- if .Values.postgres.enabled }} ---- +--- # Here I have used a hostpath # Local volumes can only be used as a statically created PersistentVolume. Dynamic provisioning is not supported. # If you need to go with Dynamic volumes you may choose AWS EBS or EFS @@ -68,13 +68,13 @@ spec: - name: POSTGRES_USER # Setting Database username value: {{ .Values.postgres.POSTGRES_USER | quote }} - - name: POSTGRES_PASSWORDD # Setting Database password + - name: POSTGRES_PASSWORD # Setting Database password value: {{ .Values.postgres.POSTGRES_PASSWORD | quote }} - - name: POSTGRES_ADMIN_USER # Setting Database admin user + - name: POSTGRES_ADMIN_USER # Setting Database admin user value: {{ .Values.postgres.POSTGRES_ADMIN_USER | quote }} - - name: POSTGRES_ADMIN_PASSWORD # Setting Database admin password + - name: POSTGRES_ADMIN_PASSWORD # Setting Database admin password value: {{ .Values.postgres.POSTGRES_ADMIN_PASSWORD | quote }} - name: POSTGRES_PORT # Setting Database port @@ -108,5 +108,5 @@ spec: - port: {{ .Values.postgres.service.port }} selector: app: {{ .Values.postgres.app }} ---- -{{- end }} \ No newline at end of file +--- +{{- end }}