From 7551a97d9264cdc35fd1ded9c581346c3c1f760f Mon Sep 17 00:00:00 2001 From: Ward Vandewege Date: Tue, 19 Oct 2021 12:41:18 -0400 Subject: [PATCH] 18278: Postgresql: fix mount point for persistent volume, bump Postgres to version 10. Arvados-DCO-1.1-Signed-off-by: Ward Vandewege --- charts/arvados/templates/postgres-deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/arvados/templates/postgres-deployment.yaml b/charts/arvados/templates/postgres-deployment.yaml index d820e8e..2d7489f 100644 --- a/charts/arvados/templates/postgres-deployment.yaml +++ b/charts/arvados/templates/postgres-deployment.yaml @@ -28,7 +28,7 @@ spec: terminationGracePeriodSeconds: 1 containers: - name: {{ .Chart.Name }} - image: "postgres:9.5" + image: "postgres:10" imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: POSTGRES_HOST_AUTH_METHOD @@ -39,7 +39,7 @@ spec: subPath: create_dbs.sh {{- if .Values.postgres.persistence.enabled }} - name: postgres-storage - mountPath: /var/lib/postgresql/data + mountPath: /var/lib/postgresql {{- end }} volumes: - name: postgres-configmap -- 2.30.2