From dfe36e31c1108f322b4404ce05de0d32f35dd54f Mon Sep 17 00:00:00 2001 From: Haina Date: Sat, 7 Feb 2026 23:43:33 +0530 Subject: [PATCH] fix(helm): Correct Postgres volume mount path for persistence --- .../helm/syft/templates/postgres/postgres-statefuleset.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grid/helm/syft/templates/postgres/postgres-statefuleset.yaml b/packages/grid/helm/syft/templates/postgres/postgres-statefuleset.yaml index 986031b17e9..0881466c029 100644 --- a/packages/grid/helm/syft/templates/postgres/postgres-statefuleset.yaml +++ b/packages/grid/helm/syft/templates/postgres/postgres-statefuleset.yaml @@ -49,7 +49,7 @@ spec: {{- toYaml .Values.postgres.env | nindent 12 }} {{- end }} volumeMounts: - - mountPath: tmp/data/db + - mountPath: /var/lib/postgresql/data name: postgres-data readOnly: false subPath: ''