This fix is part of the effort to address 30242 where issue arise because of the fact that multiple networks may share the same name (within or across local/swarm scopes). The focus of this fix is to allow creation of service when a network in local scope has the same name as the service network. An integration test has been added. This fix fixes 30242. Signed-off-by: Yong Tang <yong.tang.github@outlook.com> Upstream-commit: cafed80cd019a8b40025eaa5e5b37459362607fb Component: engine
23 lines
873 B
Go
23 lines
873 B
Go
package network
|
|
|
|
import (
|
|
"golang.org/x/net/context"
|
|
|
|
"github.com/docker/docker/api/types"
|
|
"github.com/docker/docker/api/types/filters"
|
|
"github.com/docker/docker/api/types/network"
|
|
"github.com/docker/libnetwork"
|
|
)
|
|
|
|
// Backend is all the methods that need to be implemented
|
|
// to provide network specific functionality.
|
|
type Backend interface {
|
|
FindUniqueNetwork(idName string) (libnetwork.Network, error)
|
|
GetNetworks() []libnetwork.Network
|
|
CreateNetwork(nc types.NetworkCreateRequest) (*types.NetworkCreateResponse, error)
|
|
ConnectContainerToNetwork(containerName, networkName string, endpointConfig *network.EndpointSettings) error
|
|
DisconnectContainerFromNetwork(containerName string, networkName string, force bool) error
|
|
DeleteNetwork(networkID string) error
|
|
NetworksPrune(ctx context.Context, pruneFilters filters.Args) (*types.NetworksPruneReport, error)
|
|
}
|