From fab0a8dea050f4a4fef7f4be721ee9e949e23d62 Mon Sep 17 00:00:00 2001
From: Janne Mareike Koschinski <mail@justjanne.de>
Date: Sun, 23 Apr 2023 15:51:26 +0200
Subject: [PATCH] fix: correct quoting issue

---
 postgresql/templates/statefulset.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/postgresql/templates/statefulset.yaml b/postgresql/templates/statefulset.yaml
index f1cc90f..55bc74f 100644
--- a/postgresql/templates/statefulset.yaml
+++ b/postgresql/templates/statefulset.yaml
@@ -79,7 +79,7 @@ spec:
           volumeMounts:
             - mountPath: "/var/lib/postgresql/data"
               name: data
-              subPath: {{ .Chart.AppVersion }}
+              subPath: "{{ .Chart.AppVersion }}"
             - mountPath: "/configs"
               name: config
             - mountPath: "/dev/shm"
-- 
GitLab