--nodeport-addresses added on kube-proxy.manifest.j2
Changed author
This commit is contained in:
parent
7398858572
commit
5d9908c2c3
2 changed files with 8 additions and 0 deletions
|
@ -110,6 +110,11 @@ kube_apiserver_insecure_port: 8080 # (http)
|
||||||
# Can be ipvs, iptables
|
# Can be ipvs, iptables
|
||||||
kube_proxy_mode: iptables
|
kube_proxy_mode: iptables
|
||||||
|
|
||||||
|
# Kube-proxy nodeport address.
|
||||||
|
# cidr to bind nodeport services. Flag --nodeport-addresses on kube-proxy manifest
|
||||||
|
kube_proxy_nodeport_addresses: false
|
||||||
|
# kube_proxy_nodeport_addresses_cidr: 10.0.1.0/24
|
||||||
|
|
||||||
## Encrypting Secret Data at Rest (experimental)
|
## Encrypting Secret Data at Rest (experimental)
|
||||||
kube_encrypt_secret_data: false
|
kube_encrypt_secret_data: false
|
||||||
|
|
||||||
|
|
|
@ -43,6 +43,9 @@ spec:
|
||||||
- --proxy-mode={{ kube_proxy_mode }}
|
- --proxy-mode={{ kube_proxy_mode }}
|
||||||
- --oom-score-adj=-998
|
- --oom-score-adj=-998
|
||||||
- --healthz-bind-address={{ kube_proxy_healthz_bind_address }}
|
- --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" %}
|
{% if kube_proxy_masquerade_all and kube_proxy_mode == "iptables" %}
|
||||||
- --masquerade-all
|
- --masquerade-all
|
||||||
{% elif kube_proxy_mode == 'ipvs' %}
|
{% elif kube_proxy_mode == 'ipvs' %}
|
||||||
|
|
Loading…
Reference in a new issue