keep old network ids
for windows all networks are re-populated in the store during network controller initialization. In current version it also regenerate network Ids which may be referenced by other components and it may cause broken references to a networks. This commit avoids regeneration of network ids. Signed-off-by: Andrey Kolomentsev <andrey.kolomentsev@docker.com> (cherry picked from commit e017717d96540dd263d95f90fdb2457928909924) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 317e0acc4e602f978e4d9c0130a113d179026c8e Component: engine
This commit is contained in:
committed by
Sebastiaan van Stijn
parent
71adfb3f74
commit
242fedd184
@ -343,8 +343,10 @@ func (daemon *Daemon) initNetworkController(config *config.Config, activeSandbox
|
||||
controller.WalkNetworks(s)
|
||||
|
||||
drvOptions := make(map[string]string)
|
||||
|
||||
nid := ""
|
||||
if n != nil {
|
||||
nid = n.ID()
|
||||
|
||||
// global networks should not be deleted by local HNS
|
||||
if n.Info().Scope() == datastore.GlobalScope {
|
||||
continue
|
||||
@ -389,7 +391,7 @@ func (daemon *Daemon) initNetworkController(config *config.Config, activeSandbox
|
||||
}
|
||||
|
||||
v6Conf := []*libnetwork.IpamConf{}
|
||||
_, err := controller.NewNetwork(strings.ToLower(v.Type), name, "",
|
||||
_, err := controller.NewNetwork(strings.ToLower(v.Type), name, nid,
|
||||
libnetwork.NetworkOptionGeneric(options.Generic{
|
||||
netlabel.GenericData: netOption,
|
||||
}),
|
||||
|
||||
Reference in New Issue
Block a user