Commit d010ed0d authored by Darren Shepherd's avatar Darren Shepherd

Don't ever select the flannel bridge or cni bridge

parent 3bdfaf7a
......@@ -386,6 +386,9 @@ func chooseHostInterfaceFromRoute(routes []Route, nw networkInterfacer) (net.IP,
if route.Family != family {
continue
}
if strings.HasPrefix(route.Interface, "flannel") || strings.HasPrefix(route.Interface, "cni") {
continue
}
klog.V(4).Infof("Default route transits interface %q", route.Interface)
finalIP, err := getIPFromInterface(route.Interface, family, nw)
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