|
|
@ -277,7 +277,7 @@ iptables: |
|
|
|
minSyncPeriod: {{ kube_proxy_min_sync_period }} |
|
|
|
syncPeriod: {{ kube_proxy_sync_period }} |
|
|
|
ipvs: |
|
|
|
excludeCIDRs: {{ kube_proxy_exclude_cidrs }} |
|
|
|
excludeCIDRs: {{ "[]" if kube_proxy_exclude_cidrs is not defined or kube_proxy_exclude_cidrs == "null" or kube_proxy_exclude_cidrs | length == 0 else (kube_proxy_exclude_cidrs if kube_proxy_exclude_cidrs[0] == '[' else ("[" + kube_proxy_exclude_cidrs + "]" if (kube_proxy_exclude_cidrs[0] | length) == 1 else "[" + kube_proxy_exclude_cidrs | join(",") + "]")) }} |
|
|
|
minSyncPeriod: {{ kube_proxy_min_sync_period }} |
|
|
|
scheduler: {{ kube_proxy_scheduler }} |
|
|
|
syncPeriod: {{ kube_proxy_sync_period }} |
|
|
|