Skip to content

Commit e7ae872

Browse files
committed
feat(documentdb): Set postgres UID/GID to 999 for DocumentDB
Signed-off-by: P-Louw <[email protected]>
1 parent 975b325 commit e7ae872

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

charts/cluster/templates/_helpers.tpl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,8 @@ Postgres UID
129129
{{- .Values.cluster.postgresUID }}
130130
{{- else if and (eq (include "cluster.useTimescaleDBDefaults" .) "true") (eq .Values.type "timescaledb") -}}
131131
{{- 1000 -}}
132+
{{- else if eq .Values.type "documentdb" -}}
133+
{{- 999 -}}
132134
{{- else -}}
133135
{{- 26 -}}
134136
{{- end -}}
@@ -142,6 +144,8 @@ Postgres GID
142144
{{- .Values.cluster.postgresGID }}
143145
{{- else if and (eq (include "cluster.useTimescaleDBDefaults" .) "true") (eq .Values.type "timescaledb") -}}
144146
{{- 1000 -}}
147+
{{- else if eq .Values.type "documentdb" -}}
148+
{{- 999 -}}
145149
{{- else -}}
146150
{{- 26 -}}
147151
{{- end -}}

0 commit comments

Comments
 (0)