diff --git a/stable/envoy/Chart.yaml b/stable/envoy/Chart.yaml index aed605ad88..cd54a0f48e 100755 --- a/stable/envoy/Chart.yaml +++ b/stable/envoy/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v1 description: Envoy is an open source edge and service proxy, designed for cloud-native applications. name: envoy -version: 1.4.0 +version: 1.4.1 appVersion: 1.9.0 keywords: - envoy diff --git a/stable/envoy/templates/configmap.yaml b/stable/envoy/templates/configmap.yaml index ace20dcc0f..f55a4eda7d 100644 --- a/stable/envoy/templates/configmap.yaml +++ b/stable/envoy/templates/configmap.yaml @@ -14,5 +14,6 @@ data: {{- end -}} {{- range $key, $value := .Values.templates }} {{ $key }}: |- -{{ $value | default "" | tpl . | indent 4 }} +{{ $valueWithDefault := default "" $value -}} +{{ tpl $valueWithDefault $ | indent 4 }} {{- end -}}