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
5 changes: 5 additions & 0 deletions infra/helm/team-devoops/templates/postgres-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ spec:
value: {{ .Values.database.user | quote }}
- name: POSTGRES_DB
value: {{ .Values.database.name | quote }}
# Ceph RBD volumes are ext4-formatted and contain a lost+found
# directory, so initdb cannot use the mount root. Point PGDATA at
# an empty subdirectory instead.
- name: PGDATA
value: /var/lib/postgresql/data/pgdata
- name: POSTGRES_PASSWORD
valueFrom:
secretKeyRef:
Expand Down
Loading