Commit 38acc2a5 authored by Darren Shepherd's avatar Darren Shepherd Committed by Erik Wilson

Don't ever select the flannel bridge or cni bridge

parent fdcf1c3a
...@@ -386,6 +386,9 @@ func chooseHostInterfaceFromRoute(routes []Route, nw networkInterfacer) (net.IP, ...@@ -386,6 +386,9 @@ func chooseHostInterfaceFromRoute(routes []Route, nw networkInterfacer) (net.IP,
if route.Family != family { if route.Family != family {
continue continue
} }
if strings.HasPrefix(route.Interface, "flannel") || strings.HasPrefix(route.Interface, "cni") {
continue
}
klog.V(4).Infof("Default route transits interface %q", route.Interface) klog.V(4).Infof("Default route transits interface %q", route.Interface)
finalIP, err := getIPFromInterface(route.Interface, family, nw) finalIP, err := getIPFromInterface(route.Interface, family, nw)
if err != nil { if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment