mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Moving MacVlan driver out of experimental
Signed-off-by: Madhu Venugopal <madhu@docker.com>
This commit is contained in:
parent
bbba96fcc5
commit
fe56a8d3dc
2 changed files with 3 additions and 5 deletions
|
@ -2,14 +2,10 @@
|
|||
|
||||
package libnetwork
|
||||
|
||||
import (
|
||||
"github.com/docker/libnetwork/drivers/ipvlan"
|
||||
"github.com/docker/libnetwork/drivers/macvlan"
|
||||
)
|
||||
import "github.com/docker/libnetwork/drivers/ipvlan"
|
||||
|
||||
func additionalDrivers() []initializer {
|
||||
return []initializer{
|
||||
{macvlan.Init, "macvlan"},
|
||||
{ipvlan.Init, "ipvlan"},
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,6 +3,7 @@ package libnetwork
|
|||
import (
|
||||
"github.com/docker/libnetwork/drivers/bridge"
|
||||
"github.com/docker/libnetwork/drivers/host"
|
||||
"github.com/docker/libnetwork/drivers/macvlan"
|
||||
"github.com/docker/libnetwork/drivers/null"
|
||||
"github.com/docker/libnetwork/drivers/overlay"
|
||||
"github.com/docker/libnetwork/drivers/remote"
|
||||
|
@ -12,6 +13,7 @@ func getInitializers() []initializer {
|
|||
in := []initializer{
|
||||
{bridge.Init, "bridge"},
|
||||
{host.Init, "host"},
|
||||
{macvlan.Init, "macvlan"},
|
||||
{null.Init, "null"},
|
||||
{remote.Init, "remote"},
|
||||
{overlay.Init, "overlay"},
|
||||
|
|
Loading…
Reference in a new issue