9693: Fix comma-separated-list splitting of kubelet_enforce_node_allocatable (#9694)

See https://github.com/kubernetes-sigs/kubespray/issues/9693
pull/9713/head
Tristan 2023-01-24 00:20:17 +00:00 committed by GitHub
parent 18f2abad2f
commit 5fbbcedebc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ authorization:
mode: AlwaysAllow
{% endif %}
{% if kubelet_enforce_node_allocatable is defined and kubelet_enforce_node_allocatable != "\"\"" %}
{% set kubelet_enforce_node_allocatable_list = kubelet_enforce_node_allocatable.split() %}
{% set kubelet_enforce_node_allocatable_list = kubelet_enforce_node_allocatable.split(",") %}
enforceNodeAllocatable:
{% for item in kubelet_enforce_node_allocatable_list %}
- {{ item }}