Do not quote tls arg values

If we enable these tls settings, then having quotes around the values
will prevent apiserver from starting.

Change-Id: I39d1e5861262074ef0c50f22d0fae47d822f8319
This commit is contained in:
Jared Miller 2019-03-11 18:04:31 -04:00 committed by Drew Walters
parent c3d4a464cb
commit 8f53933478
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ spec:
{{- $acceptable_keys := list "tls-min-version" "tls-cipher-suites" }}
{{- range $key, $val := .Values.apiserver.tls }}
{{- if has $key $acceptable_keys }}
- --{{ $key }}={{ $val | quote }}
- --{{ $key }}={{ $val }}
{{- end }}
{{- end }}
ports: