Delay network deletion until after lb cleanup
Removal of PolicyLists from Windows VFP must be performed prior to removing the HNS network. Otherwise PolicyList removal fails with HNS error "network not found". Signed-off-by: Trapier Marshall <tmarshall@mirantis.com>
This commit is contained in:
parent
556cb3ae81
commit
6861aade58
2 changed files with 19 additions and 14 deletions
|
@ -1059,13 +1059,6 @@ func (n *network) delete(force bool, rmLBEndpoint bool) error {
|
|||
goto removeFromStore
|
||||
}
|
||||
|
||||
if err = n.deleteNetwork(); err != nil {
|
||||
if !force {
|
||||
return err
|
||||
}
|
||||
logrus.Debugf("driver failed to delete stale network %s (%s): %v", n.Name(), n.ID(), err)
|
||||
}
|
||||
|
||||
n.ipamRelease()
|
||||
if err = c.updateToStore(n); err != nil {
|
||||
logrus.Warnf("Failed to update store after ipam release for network %s (%s): %v", n.Name(), n.ID(), err)
|
||||
|
@ -1086,9 +1079,18 @@ func (n *network) delete(force bool, rmLBEndpoint bool) error {
|
|||
c.cleanupServiceDiscovery(n.ID())
|
||||
|
||||
// Cleanup the load balancer. On Windows this call is required
|
||||
// to remove remote loadbalancers in VFP.
|
||||
// to remove remote loadbalancers in VFP, and must be performed before
|
||||
// dataplane network deletion.
|
||||
c.cleanupServiceBindings(n.ID())
|
||||
|
||||
// Delete the network from the dataplane
|
||||
if err = n.deleteNetwork(); err != nil {
|
||||
if !force {
|
||||
return err
|
||||
}
|
||||
logrus.Debugf("driver failed to delete stale network %s (%s): %v", n.Name(), n.ID(), err)
|
||||
}
|
||||
|
||||
removeFromStore:
|
||||
// deleteFromStore performs an atomic delete operation and the
|
||||
// network.epCnt will help prevent any possible
|
||||
|
|
|
@ -375,12 +375,15 @@ func (c *controller) rmServiceBinding(svcName, svcID, nID, eID, containerName st
|
|||
// Remove loadbalancer service(if needed) and backend in all
|
||||
// sandboxes in the network only if the vip is valid.
|
||||
if entries == 0 {
|
||||
// The network may well have been deleted before the last
|
||||
// of the service bindings. That's ok on Linux because
|
||||
// removing the network sandbox implicitly removes the
|
||||
// backend service bindings. Windows VFP cleanup requires
|
||||
// calling cleanupServiceBindings on the network prior to
|
||||
// deleting the network, performed by network.delete.
|
||||
// The network may well have been deleted from the store (and
|
||||
// dataplane) before the last of the service bindings. On Linux that's
|
||||
// ok because removing the network sandbox from the dataplane
|
||||
// implicitly cleans up all related dataplane state.
|
||||
// On the Windows dataplane, VFP policylists must be removed
|
||||
// independently of the network, and they must be removed before the HNS
|
||||
// network. Otherwise, policylist removal fails with "network not
|
||||
// found." On Windows cleanupServiceBindings must be called prior to
|
||||
// removing the network from the store or dataplane.
|
||||
n, err := c.NetworkByID(nID)
|
||||
if err == nil {
|
||||
n.(*network).rmLBBackend(ip, lb, rmService, fullRemove)
|
||||
|
|
Loading…
Reference in a new issue