[common] Fix syntax error (#114)

This commit is contained in:
Bernd Schörgers 2020-11-06 22:22:57 +01:00 committed by GitHub
parent 6b9650f348
commit c7f15f37a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v2
name: common name: common
description: Function library for k8s-at-home charts description: Function library for k8s-at-home charts
type: library type: library
version: 1.0.2 version: 1.0.3
keywords: keywords:
- k8s-at-home - k8s-at-home
- common - common

View File

@ -26,8 +26,8 @@
volumeMounts: volumeMounts:
{{- range $index, $PVC := .Values.persistence }} {{- range $index, $PVC := .Values.persistence }}
{{- if $PVC.enabled }} {{- if $PVC.enabled }}
- mountPath: {{- $PVC.mountPath }} - mountPath: {{ $PVC.mountPath }}
name: {{- $index }} name: {{ $index }}
{{- end }} {{- end }}
{{- end }} {{- end }}
{{- if .Values.additionalVolumeMounts }} {{- if .Values.additionalVolumeMounts }}