From ce6dd633bac23aa351c49b03c13c038a72417529 Mon Sep 17 00:00:00 2001 From: Lars Scheibling Date: Sun, 4 Jun 2023 08:48:36 +0000 Subject: [PATCH] Fixed missing commas in init cfg --- .gitlab-ci.yml | 2 +- Chart/templates/configmap.yaml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3bd0225..02169c5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,5 +1,5 @@ variables: - HELM_CHART_VERSION: "0.5.11" + HELM_CHART_VERSION: "0.5.12" stages: - deploy diff --git a/Chart/templates/configmap.yaml b/Chart/templates/configmap.yaml index 9593893..20b1007 100644 --- a/Chart/templates/configmap.yaml +++ b/Chart/templates/configmap.yaml @@ -45,9 +45,9 @@ data: "applicationDir": "/app", "permissions": "0770", "updatePermissions": true, - "importDatabase": {{ .Values.database.import | default false }} - "databasePath": "{{ .Values.database.importPath | default "" }}" - "overwriteDatabase": {{ .Values.database.overwrite | default false }} + "importDatabase": {{ .Values.database.import | default false }}, + "databasePath": "{{ .Values.database.importPath | default "" }}", + "overwriteDatabase": {{ .Values.database.overwrite | default false }}, "generateSalts": true, "activateTheme": "{{ .Values.site.theme | default .Values.site.name }}" }