Fix ipvs by kubeadm v1alpha1
parent
d9ea937493
commit
16fc22a207
|
@ -23,10 +23,16 @@ kubernetesVersion: {{ kube_version }}
|
||||||
{% if cloud_provider is defined and cloud_provider not in ["gce", "oci"] %}
|
{% if cloud_provider is defined and cloud_provider not in ["gce", "oci"] %}
|
||||||
cloudProvider: {{ cloud_provider }}
|
cloudProvider: {{ cloud_provider }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if kube_proxy_mode == 'ipvs' %}
|
||||||
kubeProxy:
|
kubeProxy:
|
||||||
config:
|
config:
|
||||||
{% if kube_proxy_mode == 'ipvs' and kube_version | version_compare('v1.10', '<') %}
|
{% if kube_version | version_compare('v1.10', '<') %}
|
||||||
featureGates: SupportIPVSProxyMode=true
|
featureGates: SupportIPVSProxyMode=true
|
||||||
|
{% endif %}
|
||||||
|
{% if kube_version | version_compare('v1.10', '>=') %}
|
||||||
|
featureGates:
|
||||||
|
SupportIPVSProxyMode: true
|
||||||
|
{% endif %}
|
||||||
mode: ipvs
|
mode: ipvs
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if kube_proxy_nodeport_addresses %}
|
{% if kube_proxy_nodeport_addresses %}
|
||||||
|
|
Loading…
Reference in New Issue