Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions deploy/kubernetes/charts/templates/postgres.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -108,5 +108,5 @@ spec:
- port: {{ .Values.postgres.service.port }}
selector:
app: {{ .Values.postgres.app }}
---
{{- end }}
---
{{- end }}