From 3e40262ce33e72731aedc39bdd35f2b0d3109ffa Mon Sep 17 00:00:00 2001 From: Sean Eagan Date: Fri, 27 Sep 2019 13:50:25 -0500 Subject: [PATCH] Fix tiller storage configuration Removes extra quotes which were getting included as part of the storage argument. Change-Id: I3e5c165694dc036b21ad14cf1b25648971d232c5 --- charts/armada/templates/deployment-api.yaml | 2 +- charts/tiller/templates/deployment-tiller.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/armada/templates/deployment-api.yaml b/charts/armada/templates/deployment-api.yaml index b1fb57fc..5887984e 100644 --- a/charts/armada/templates/deployment-api.yaml +++ b/charts/armada/templates/deployment-api.yaml @@ -153,7 +153,7 @@ spec: command: - /tiller {{- if .Values.conf.tiller.storage }} - - --storage={{ .Values.conf.tiller.storage | quote }} + - --storage={{ .Values.conf.tiller.storage }} {{- end }} - -logtostderr - -v diff --git a/charts/tiller/templates/deployment-tiller.yaml b/charts/tiller/templates/deployment-tiller.yaml index e32ab919..207c20ea 100644 --- a/charts/tiller/templates/deployment-tiller.yaml +++ b/charts/tiller/templates/deployment-tiller.yaml @@ -76,7 +76,7 @@ spec: command: - /tiller {{- if .Values.conf.tiller.storage }} - - --storage={{ .Values.conf.tiller.storage | quote }} + - --storage={{ .Values.conf.tiller.storage }} {{- end }} - -logtostderr - -v