Merge pull request #2201 from riverzhang/ipvs

Support ipvs mode for kube-proxy
This commit is contained in:
Chad Swenson
2018-02-01 22:29:52 -06:00
committed by GitHub
5 changed files with 32 additions and 0 deletions

View File

@@ -19,6 +19,12 @@ kubernetesVersion: {{ kube_version }}
{% if cloud_provider is defined and cloud_provider != "gce" %}
cloudProvider: {{ cloud_provider }}
{% endif %}
{% if kube_proxy_mode == 'ipvs' %}
kubeProxy:
config:
featureGates: SupportIPVSProxyMode=true
mode: ipvs
{% endif %}
authorizationModes:
{% for mode in authorization_modes %}
- {{ mode }}