Skip to content
This repository has been archived by the owner on Jan 18, 2024. It is now read-only.

fixed default uid syntax in helpers.tpl #300

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/timescaledb-multinode/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ If release name contains chart name it will be used as a full name.
{{- end -}}

{{- define "postgres.uid" -}}
{{- default .Values.uid "1000" -}}
{{- default "1000" .Values.uid -}}
{{- end -}}

{{/*
Expand Down
2 changes: 1 addition & 1 deletion charts/timescaledb-single/templates/_helpers.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ${HOME}/.pgbackrest_environment
{{- end -}}

{{- define "postgres.uid" -}}
{{- default .Values.uid "1000" -}}
{{- default "1000" .Values.uid -}}
{{- end -}}

{{- define "data_directory" -}}
Expand Down