2021-03-30 12:50:37 +00:00
|
|
|
{{- /*
|
|
|
|
Feature gates for all control plane components
|
|
|
|
*/ -}}
|
|
|
|
{{- define "kubeadm.featuregates" -}}
|
2021-04-15 13:51:46 +00:00
|
|
|
{{- $gates := list "CustomCPUCFSQuotaPeriod" "GenericEphemeralVolume" "CSIMigrationAWSComplete" "CSIMigrationAzureDiskComplete" "CSIMigrationAzureFileComplete" "CSIMigrationGCEComplete" "CSIMigrationOpenStackComplete" "CSIMigrationvSphereComplete" }}
|
2021-03-30 12:50:37 +00:00
|
|
|
{{- if eq .return "csv" }}
|
2021-04-15 13:51:46 +00:00
|
|
|
{{- range $key := $gates }}
|
|
|
|
{{- $key }}=true,
|
2021-03-30 12:50:37 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- else }}
|
2021-04-15 13:51:46 +00:00
|
|
|
{{- range $key := $gates }}
|
|
|
|
{{ $key }}: true
|
2021-03-30 12:50:37 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- end }}
|
|
|
|
{{- end -}}
|