From ba2227947d13d5911a786f0a226cf80b23d6a46f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=9D=D0=B0?= =?UTF-8?q?=D0=B7=D0=B0=D1=80=D0=BE=D0=B2?= Date: Fri, 18 Jul 2025 11:59:32 +0300 Subject: [PATCH] fix(helm): postgresql deployment for ext4 volumes --- helm/templates/deployment-postgres.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/helm/templates/deployment-postgres.yaml b/helm/templates/deployment-postgres.yaml index 2bfdc755..56c36490 100644 --- a/helm/templates/deployment-postgres.yaml +++ b/helm/templates/deployment-postgres.yaml @@ -24,6 +24,8 @@ spec: ports: - containerPort: 5432 env: + - name: PGDATA + value: /var/lib/postgresql/data/pgdata - name: POSTGRES_USER value: {{ .Values.postgres.POSTGRES_USER }} - name: POSTGRES_DB_COMPENG