This is an automated email from the ASF dual-hosted git repository.

dgrove pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-openwhisk-deploy-kube.git


The following commit(s) were added to refs/heads/master by this push:
     new 6e99b75  Fix YAML parse error (#341)
6e99b75 is described below

commit 6e99b758414b4d79b2adeddf48a6173a5a08f0cf
Author: Patrick Löcker <ploec...@users.noreply.github.com>
AuthorDate: Wed Nov 7 15:31:34 2018 +0100

    Fix YAML parse error (#341)
    
    A space was removed in commit #340. That causes a parse error when 
persistence is enabled.
---
 helm/openwhisk/templates/redis-pod.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/helm/openwhisk/templates/redis-pod.yaml 
b/helm/openwhisk/templates/redis-pod.yaml
index d71ab2b..75fde54 100644
--- a/helm/openwhisk/templates/redis-pod.yaml
+++ b/helm/openwhisk/templates/redis-pod.yaml
@@ -54,7 +54,7 @@ spec:
           imagePullPolicy: {{ .Values.redis.imagePullPolicy | quote }}
           image: {{ .Values.redis.image | quote }}
 {{- if .Values.redis.persistence.enabled }}
-         volumeMounts:
+          volumeMounts:
           - mountPath: /data
             name: redis-data
             readOnly: false

Reply via email to