mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Revert "Do not leave/delete gw endpoint twice"
This reverts commit c957564753
introduced
via #1064.
Signed-off-by: Madhu Venugopal <madhu@docker.com>
This commit is contained in:
parent
c13d22db78
commit
12f04e292f
4 changed files with 21 additions and 33 deletions
|
@ -65,13 +65,20 @@ func (sb *sandbox) setupDefaultGW() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// If present, detach and remove the endpoint connecting the sandbox to the default gw network.
|
// If present, removes the endpoint connecting the sandbox to the default gw network.
|
||||||
|
// Unless it is the endpoint designated to provide the external connectivity.
|
||||||
|
// If the sandbox is being deleted, removes the endpoint unconditionally.
|
||||||
func (sb *sandbox) clearDefaultGW() error {
|
func (sb *sandbox) clearDefaultGW() error {
|
||||||
var ep *endpoint
|
var ep *endpoint
|
||||||
|
|
||||||
if ep = sb.getEndpointInGWNetwork(); ep == nil {
|
if ep = sb.getEndpointInGWNetwork(); ep == nil {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ep == sb.getGatewayEndpoint() && !sb.inDelete {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
if err := ep.sbLeave(sb, false); err != nil {
|
if err := ep.sbLeave(sb, false); err != nil {
|
||||||
return fmt.Errorf("container %s: endpoint leaving GW Network failed: %v", sb.containerID, err)
|
return fmt.Errorf("container %s: endpoint leaving GW Network failed: %v", sb.containerID, err)
|
||||||
}
|
}
|
||||||
|
@ -81,27 +88,20 @@ func (sb *sandbox) clearDefaultGW() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Evaluate whether the sandbox needs to be attached to the default
|
|
||||||
// gateway network.
|
|
||||||
func (sb *sandbox) needDefaultGW() bool {
|
func (sb *sandbox) needDefaultGW() bool {
|
||||||
var needGW bool
|
var needGW bool
|
||||||
|
|
||||||
if sb.inDelete {
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, ep := range sb.getConnectedEndpoints() {
|
for _, ep := range sb.getConnectedEndpoints() {
|
||||||
if ep.endpointInGWNetwork() {
|
if ep.endpointInGWNetwork() {
|
||||||
continue
|
return false
|
||||||
}
|
}
|
||||||
if ep.getNetwork().Type() == "null" || ep.getNetwork().Type() == "host" {
|
if ep.getNetwork().Type() == "null" || ep.getNetwork().Type() == "host" {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if ep.getNetwork().Internal() {
|
if ep.getNetwork().Internal() {
|
||||||
continue
|
return false
|
||||||
}
|
}
|
||||||
// During stale sandbox cleanup, joinInfo may be nil
|
if ep.joinInfo.disableGatewayService {
|
||||||
if ep.joinInfo != nil && ep.joinInfo.disableGatewayService {
|
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
// TODO v6 needs to be handled.
|
// TODO v6 needs to be handled.
|
||||||
|
@ -115,7 +115,6 @@ func (sb *sandbox) needDefaultGW() bool {
|
||||||
}
|
}
|
||||||
needGW = true
|
needGW = true
|
||||||
}
|
}
|
||||||
|
|
||||||
return needGW
|
return needGW
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -479,14 +479,7 @@ func (ep *endpoint) sbJoin(sb *sandbox, options ...EndpointOption) error {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !sb.needDefaultGW() {
|
return sb.clearDefaultGW()
|
||||||
if err := sb.clearDefaultGW(); err != nil {
|
|
||||||
log.Warnf("Failure while disconnecting sandbox %s (%s) from gateway network: %v",
|
|
||||||
sb.ID(), sb.ContainerID(), err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (ep *endpoint) rename(name string) error {
|
func (ep *endpoint) rename(name string) error {
|
||||||
|
@ -629,7 +622,10 @@ func (ep *endpoint) sbLeave(sb *sandbox, force bool, options ...EndpointOption)
|
||||||
}
|
}
|
||||||
|
|
||||||
sb.deleteHostsEntries(n.getSvcRecords(ep))
|
sb.deleteHostsEntries(n.getSvcRecords(ep))
|
||||||
if sb.needDefaultGW() {
|
if !sb.inDelete && sb.needDefaultGW() {
|
||||||
|
if sb.getEPwithoutGateway() == nil {
|
||||||
|
return fmt.Errorf("endpoint without GW expected, but not found")
|
||||||
|
}
|
||||||
return sb.setupDefaultGW()
|
return sb.setupDefaultGW()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -643,14 +639,7 @@ func (ep *endpoint) sbLeave(sb *sandbox, force bool, options ...EndpointOption)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if !sb.needDefaultGW() {
|
return sb.clearDefaultGW()
|
||||||
if err := sb.clearDefaultGW(); err != nil {
|
|
||||||
log.Warnf("Failure while disconnecting sandbox %s (%s) from gateway network: %v",
|
|
||||||
sb.ID(), sb.ContainerID(), err)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n *network) validateForceDelete(locator string) error {
|
func (n *network) validateForceDelete(locator string) error {
|
||||||
|
|
|
@ -197,10 +197,6 @@ func (sb *sandbox) delete(force bool) error {
|
||||||
// Detach from all endpoints
|
// Detach from all endpoints
|
||||||
retain := false
|
retain := false
|
||||||
for _, ep := range sb.getConnectedEndpoints() {
|
for _, ep := range sb.getConnectedEndpoints() {
|
||||||
// gw network endpoint detach and removal are automatic
|
|
||||||
if ep.endpointInGWNetwork() {
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
// Retain the sanbdox if we can't obtain the network from store.
|
// Retain the sanbdox if we can't obtain the network from store.
|
||||||
if _, err := c.getNetworkFromStore(ep.getNetwork().ID()); err != nil {
|
if _, err := c.getNetworkFromStore(ep.getNetwork().ID()); err != nil {
|
||||||
retain = true
|
retain = true
|
||||||
|
|
|
@ -345,6 +345,10 @@ function test_overlay() {
|
||||||
# Disconnect from overlay network
|
# Disconnect from overlay network
|
||||||
net_disconnect ${start} container_${start} multihost
|
net_disconnect ${start} container_${start} multihost
|
||||||
|
|
||||||
|
# Make sure external connectivity works
|
||||||
|
runc $(dnet_container_name ${start} $dnet_suffix) $(get_sbox_id ${start} container_${start}) \
|
||||||
|
"ping -c 1 www.google.com"
|
||||||
|
|
||||||
# Connect to overlay network again
|
# Connect to overlay network again
|
||||||
net_connect ${start} container_${start} multihost
|
net_connect ${start} container_${start} multihost
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue