parent
7398858572
commit
5d9908c2c3
|
@ -110,6 +110,11 @@ kube_apiserver_insecure_port: 8080 # (http)
|
|||
# Can be ipvs, 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)
|
||||
kube_encrypt_secret_data: false
|
||||
|
||||
|
|
|
@ -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' %}
|
||||
|
|
Loading…
Reference in New Issue