Skip to content

Commit 28c5260

Browse files
authored
convert bool to string before passing to helm templating engine (#134)
Signed-off-by: Jan-Otto Kröpke <[email protected]>
1 parent 6fe774e commit 28c5260

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

helm/oauth2-proxy/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: oauth2-proxy
2-
version: 6.9.0
2+
version: 6.9.1
33
apiVersion: v2
44
appVersion: 7.4.0
55
home: https://oauth2-proxy.github.io/oauth2-proxy/

helm/oauth2-proxy/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ spec:
7373
{{- if kindIs "map" .Values.extraArgs }}
7474
{{- range $key, $value := .Values.extraArgs }}
7575
{{- if $value }}
76-
- --{{ $key }}={{ tpl $value $ }}
76+
- --{{ $key }}={{ tpl ($value | toString) $ }}
7777
{{- else }}
7878
- --{{ $key }}
7979
{{- end }}

0 commit comments

Comments
 (0)