mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-28 14:07:14 +00:00
[kube-proxy/ipvs] Avoid unbinding multiple times for multiport svc
This commit is contained in:
parent
b2c169d27c
commit
0f9d30dd27
@ -1651,6 +1651,9 @@ func (proxier *Proxier) cleanLegacyService(activeServices map[string]bool, curre
|
|||||||
klog.V(4).Infof("Unbinding address %s", addr)
|
klog.V(4).Infof("Unbinding address %s", addr)
|
||||||
if err := proxier.netlinkHandle.UnbindAddress(addr, DefaultDummyDevice); err != nil {
|
if err := proxier.netlinkHandle.UnbindAddress(addr, DefaultDummyDevice); err != nil {
|
||||||
klog.Errorf("Failed to unbind service addr %s from dummy interface %s: %v", addr, DefaultDummyDevice, err)
|
klog.Errorf("Failed to unbind service addr %s from dummy interface %s: %v", addr, DefaultDummyDevice, err)
|
||||||
|
} else {
|
||||||
|
// In case we delete a multi-port service, avoid trying to unbind multiple times
|
||||||
|
delete(legacyBindAddrs,addr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user