Skip to content

Commit

Permalink
[stable/envoy] Fix template for config files (helm#11180)
Browse files Browse the repository at this point in the history
- Fix an argument mis-match on applying template for envoy.yaml file

Signed-off-by: Yui Terashima <[email protected]>
  • Loading branch information
terashi58 authored and k8s-ci-robot committed Feb 6, 2019
1 parent a7b1d4e commit 08c8258
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stable/envoy/Chart.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 2 additions & 1 deletion stable/envoy/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 -}}

0 comments on commit 08c8258

Please sign in to comment.