Browse Source

fix(vagrant): forces flannel interface as eth1 (#4070)

Without this pods cannot communicate with each other by default (broken
networking)

Closes #2114
pull/4025/head
Peter Metz 5 years ago
committed by Kubernetes Prow Robot
parent
commit
fcd895d032
1 changed files with 1 additions and 0 deletions
  1. 1
      Vagrantfile

1
Vagrantfile

@ -165,6 +165,7 @@ Vagrant.configure("2") do |config|
host_vars[vm_name] = { host_vars[vm_name] = {
"ip": ip, "ip": ip,
"flannel_interface": "eth1",
"kube_network_plugin": $network_plugin, "kube_network_plugin": $network_plugin,
"kube_network_plugin_multus": $multi_networking, "kube_network_plugin_multus": $multi_networking,
"docker_keepcache": "1", "docker_keepcache": "1",

Loading…
Cancel
Save