[bitnami/prestashop] fix: init container parsing error (#4061)

Signed-off-by: darteaga <darteaga@vmware.com>
This commit is contained in:
Daniel Arteaga
2020-10-20 18:28:45 +02:00
committed by GitHub
parent 5629e18feb
commit 69e0d56ef8
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
apiVersion: v1
name: prestashop
version: 11.0.1
version: 11.0.2
appVersion: 1.7.6-8
description: A popular open source ecommerce solution. Professional tools are easily accessible to increase online sales including instant guest checkout, abandoned cart reminders and automated Email marketing.
keywords:
+4 -1
View File
@@ -56,7 +56,10 @@ spec:
- ip: "127.0.0.1"
hostnames:
- "status.localhost"
initContainers: {{- include "common.tplvalues.render" (dict "value" .Values.initContainers "context" $) | nindent 8 }}
initContainers:
{{- if .Values.initContainers }}
{{- include "common.tplvalues.render" (dict "value" .Values.initContainers "context" $) | nindent 8 }}
{{- end }}
{{- if and .Values.volumePermissions.enabled .Values.persistence.enabled }}
- name: volume-permissions
image: {{ include "prestashop.volumePermissions.image" . }}