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 }}