diff --git a/bindata/bootkube/config/bootstrap-config-overrides.yaml b/bindata/bootkube/config/bootstrap-config-overrides.yaml index 0d63d08f6..9e8c91bba 100644 --- a/bindata/bootkube/config/bootstrap-config-overrides.yaml +++ b/bindata/bootkube/config/bootstrap-config-overrides.yaml @@ -14,16 +14,16 @@ extendedArguments: authorization-kubeconfig: - "/etc/kubernetes/secrets/kubeconfig" {{if .ClusterCIDR }} - cluster-cidr: {{range .ClusterCIDR}} - - {{.}}{{end}} + cluster-cidr: + - "{{ range $index, $element := .ClusterCIDR}}{{if $index}},{{end}}{{$element}}{{end}}" {{end}} {{if .ServiceClusterIPRange }} - service-cluster-ip-range: {{range .ServiceClusterIPRange}} - - {{.}}{{end}} + service-cluster-ip-range: + - "{{ range $index, $element := .ServiceClusterIPRange}}{{if $index}},{{end}}{{$element}}{{end}}" {{end}} pv-recycler-pod-template-filepath-nfs: # bootstrap KCM doesn't need recycler templates - "" pv-recycler-pod-template-filepath-hostpath: - "" feature-gates: {{range .FeatureGates}} - - {{.}}{{end}} \ No newline at end of file + - {{.}}{{end}}