From c7f15f37a2541b60698743d9b20def546e1faca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bernd=20Sch=C3=B6rgers?= Date: Fri, 6 Nov 2020 22:22:57 +0100 Subject: [PATCH] [common] Fix syntax error (#114) --- charts/common/Chart.yaml | 2 +- charts/common/templates/lib/controller/_container.tpl | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/common/Chart.yaml b/charts/common/Chart.yaml index 541ab6bb..0dca0d10 100644 --- a/charts/common/Chart.yaml +++ b/charts/common/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: common description: Function library for k8s-at-home charts type: library -version: 1.0.2 +version: 1.0.3 keywords: - k8s-at-home - common diff --git a/charts/common/templates/lib/controller/_container.tpl b/charts/common/templates/lib/controller/_container.tpl index e129e89c..79a1bac5 100644 --- a/charts/common/templates/lib/controller/_container.tpl +++ b/charts/common/templates/lib/controller/_container.tpl @@ -26,8 +26,8 @@ volumeMounts: {{- range $index, $PVC := .Values.persistence }} {{- if $PVC.enabled }} - - mountPath: {{- $PVC.mountPath }} - name: {{- $index }} + - mountPath: {{ $PVC.mountPath }} + name: {{ $index }} {{- end }} {{- end }} {{- if .Values.additionalVolumeMounts }}