Move kube_proxy_remove out of set_facts and set default (#4180)

This commit is contained in:
Matthew Mosesohn
2019-02-25 11:08:06 +03:00
committed by Kubernetes Prow Robot
parent 4638acfe81
commit b07641c3f3
5 changed files with 10 additions and 7 deletions

View File

@@ -17,6 +17,9 @@ kube_version: v1.13.3
## Kube Proxy mode One of ['iptables','ipvs']
kube_proxy_mode: ipvs
## Delete kube-proxy daemonset if kube_proxy_remove set, e.g. kube_network_plugin providing proxy services
kube_proxy_remove: "{{ (kube_network_plugin == 'kube-router') and (kube_router_run_service_proxy is defined and kube_router_run_service_proxy)| bool }}"
# A string slice of values which specify the addresses to use for NodePorts.
# Values may be valid IP blocks (e.g. 1.2.3.0/24, 1.2.3.4/32).
# The default empty string slice ([]) means to use all local addresses.