From f8e49c239697a95367fcb768637f85d5480f9732 Mon Sep 17 00:00:00 2001 From: bozorgmehr96 <49644578+bozorgmehr96@users.noreply.github.com> Date: Thu, 7 Nov 2024 21:40:22 +0330 Subject: [PATCH] Add missing dot in front of variable use Signed-off-by: Mohammad Bozorgmehr --- charts/cluster/templates/_bootstrap.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/cluster/templates/_bootstrap.tpl b/charts/cluster/templates/_bootstrap.tpl index 0059fb1aa..36f5b73cf 100644 --- a/charts/cluster/templates/_bootstrap.tpl +++ b/charts/cluster/templates/_bootstrap.tpl @@ -10,7 +10,7 @@ bootstrap: {{- if .Values.cluster.initdb.owner }} owner: {{ tpl .Values.cluster.initdb.owner . }} {{- end }} - {{- if or (eq .Values.type "postgis") (eq .Values.type "timescaledb") (not (empty Values.cluster.initdb.postInitApplicationSQL)) }} + {{- if or (eq .Values.type "postgis") (eq .Values.type "timescaledb") (not (empty .Values.cluster.initdb.postInitApplicationSQL)) }} postInitApplicationSQL: {{- if eq .Values.type "postgis" }} - CREATE EXTENSION IF NOT EXISTS postgis;