diff options
Diffstat (limited to 'vagrant/inventory')
-rw-r--r-- | vagrant/inventory/group_vars/k8s-cluster.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/vagrant/inventory/group_vars/k8s-cluster.yml b/vagrant/inventory/group_vars/k8s-cluster.yml index 7b0e6b8c..c6008de8 100644 --- a/vagrant/inventory/group_vars/k8s-cluster.yml +++ b/vagrant/inventory/group_vars/k8s-cluster.yml @@ -62,3 +62,9 @@ kube_version: v1.11.3 # Helm deployment # NOTE(electrocuracha): This value might be changed for the istio implementation helm_enabled: false + +# Kube-proxy proxyMode configuration. +# NOTE: Ipvs is based on netfilter hook function, but uses hash table as the underlying data structure and +# works in the kernel space +# https://kubernetes.io/docs/concepts/services-networking/service/#proxy-mode-ipvs +kube_proxy_mode: ipvs |