1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-16 15:10:12 +00:00

Add quotation mark for nginx-configuration

Related issue https://github.com/rancher/rancher/issues/15044
Configmap resource data only support string data so
we should add quotation mark for each data item.
This commit is contained in:
orangedeng
2018-08-20 15:48:04 +08:00
committed by Alena Prokharchyk
parent 0d0ec5c7c4
commit b4d04c7ee9

View File

@@ -15,7 +15,7 @@ metadata:
app: ingress-nginx
data:
{{ range $k,$v := .Options }}
{{ $k }}: {{ $v }}
{{ $k }}: "{{ $v }}"
{{ end }}
---
kind: ConfigMap