From fcd895d0325575cc41af155f40fc6bea2bb6a967 Mon Sep 17 00:00:00 2001 From: Peter Metz Date: Sat, 26 Jan 2019 13:38:37 -0800 Subject: [PATCH] fix(vagrant): forces flannel interface as eth1 (#4070) Without this pods cannot communicate with each other by default (broken networking) Closes #2114 --- Vagrantfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Vagrantfile b/Vagrantfile index 9e587c795..ad5550ede 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -165,6 +165,7 @@ Vagrant.configure("2") do |config| host_vars[vm_name] = { "ip": ip, + "flannel_interface": "eth1", "kube_network_plugin": $network_plugin, "kube_network_plugin_multus": $multi_networking, "docker_keepcache": "1",