Browse Source

Fixed log in case of ipv6 only config

Signed-off-by: Roberto Bonafiglia <roberto.bonafiglia@suse.com>
pull/5215/head
Roberto Bonafiglia 3 years ago
parent
commit
f3d81544b1
  1. 2
      pkg/agent/flannel/flannel.go

2
pkg/agent/flannel/flannel.go

@ -116,7 +116,7 @@ func LookupExtInterface(iface *net.Interface, netMode int) (*backend.ExternalInt
if err != nil { if err != nil {
return nil, fmt.Errorf("failed to find IPv6 address for interface %s", iface.Name) return nil, fmt.Errorf("failed to find IPv6 address for interface %s", iface.Name)
} }
logrus.Infof("Using dual-stack mode. The ipv6 address %s will be used by flannel", ifacev6Addr[0]) logrus.Infof("The interface %s with ipv6 address %s will be used by flannel", iface.Name, ifacev6Addr[0])
ifaceAddr = append(ifaceAddr, nil) ifaceAddr = append(ifaceAddr, nil)
case (ipv4 + ipv6): case (ipv4 + ipv6):
ifaceAddr, err = ip.GetInterfaceIP4Addrs(iface) ifaceAddr, err = ip.GetInterfaceIP4Addrs(iface)

Loading…
Cancel
Save