mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Add NetworkManager and ClusterStatus interfaces
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
b6cb416051
commit
8f4f85dd5b
1 changed files with 12 additions and 0 deletions
|
@ -6,6 +6,18 @@ import (
|
|||
|
||||
// Cluster is the interface for github.com/docker/docker/daemon/cluster.(*Cluster).
|
||||
type Cluster interface {
|
||||
ClusterStatus
|
||||
NetworkManager
|
||||
}
|
||||
|
||||
// ClusterStatus interface provides information about the Swarm status of the Cluster
|
||||
type ClusterStatus interface {
|
||||
IsAgent() bool
|
||||
IsManager() bool
|
||||
}
|
||||
|
||||
// NetworkManager provides methods to manage networks
|
||||
type NetworkManager interface {
|
||||
GetNetwork(input string) (apitypes.NetworkResource, error)
|
||||
GetNetworks() ([]apitypes.NetworkResource, error)
|
||||
RemoveNetwork(input string) error
|
||||
|
|
Loading…
Reference in a new issue