Merge pull request #3161 from nutellinoit/kube_proxy_nodeport_addresses

--nodeport-addresses added on kube-proxy.manifest.j2 and on k8s-cluster.yml
This commit is contained in:
k8s-ci-robot
2018-08-25 02:00:19 -07:00
committed by GitHub
4 changed files with 15 additions and 1 deletions

View File

@@ -43,6 +43,9 @@ spec:
- --proxy-mode={{ kube_proxy_mode }}
- --oom-score-adj=-998
- --healthz-bind-address={{ kube_proxy_healthz_bind_address }}
{% if kube_proxy_nodeport_addresses %}
- --nodeport-addresses={{ kube_proxy_nodeport_addresses_cidr }}
{% endif %}
{% if kube_proxy_masquerade_all and kube_proxy_mode == "iptables" %}
- --masquerade-all
{% elif kube_proxy_mode == 'ipvs' %}