From b035e5b6e03b1f5f1906312a08ded511eb45b335 Mon Sep 17 00:00:00 2001 From: Itay Grudev Date: Wed, 18 Sep 2024 03:15:31 +0300 Subject: [PATCH] Using the default UID/GID 999 from the postgres docker image --- charts/cluster/templates/_helpers.tpl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/charts/cluster/templates/_helpers.tpl b/charts/cluster/templates/_helpers.tpl index b6f8a8f83..b9f79a1fb 100644 --- a/charts/cluster/templates/_helpers.tpl +++ b/charts/cluster/templates/_helpers.tpl @@ -118,6 +118,8 @@ Postgres UID {{- .Values.cluster.postgresUID }} {{- else if and (eq (include "cluster.useTimescaleDBDefaults" .) "true") (eq .Values.type "timescaledb") -}} {{- 1000 -}} + {{- else if eq .Values.type "paradedb" -}} + {{- 999 -}} {{- else -}} {{- 26 -}} {{- end -}} @@ -131,6 +133,8 @@ Postgres GID {{- .Values.cluster.postgresGID }} {{- else if and (eq (include "cluster.useTimescaleDBDefaults" .) "true") (eq .Values.type "timescaledb") -}} {{- 1000 -}} + {{- else if eq .Values.type "paradedb" -}} + {{- 999 -}} {{- else -}} {{- 26 -}} {{- end -}}