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
|
package libnetwork
|
||||||
|
|
||||||
import (
|
import "github.com/docker/libnetwork/drivers/ipvlan"
|
||||||
"github.com/docker/libnetwork/drivers/ipvlan"
|
|
||||||
"github.com/docker/libnetwork/drivers/macvlan"
|
|
||||||
)
|
|
||||||
|
|
||||||
func additionalDrivers() []initializer {
|
func additionalDrivers() []initializer {
|
||||||
return []initializer{
|
return []initializer{
|
||||||
{macvlan.Init, "macvlan"},
|
|
||||||
{ipvlan.Init, "ipvlan"},
|
{ipvlan.Init, "ipvlan"},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,6 +3,7 @@ package libnetwork
|
||||||
import (
|
import (
|
||||||
"github.com/docker/libnetwork/drivers/bridge"
|
"github.com/docker/libnetwork/drivers/bridge"
|
||||||
"github.com/docker/libnetwork/drivers/host"
|
"github.com/docker/libnetwork/drivers/host"
|
||||||
|
"github.com/docker/libnetwork/drivers/macvlan"
|
||||||
"github.com/docker/libnetwork/drivers/null"
|
"github.com/docker/libnetwork/drivers/null"
|
||||||
"github.com/docker/libnetwork/drivers/overlay"
|
"github.com/docker/libnetwork/drivers/overlay"
|
||||||
"github.com/docker/libnetwork/drivers/remote"
|
"github.com/docker/libnetwork/drivers/remote"
|
||||||
|
@ -12,6 +13,7 @@ func getInitializers() []initializer {
|
||||||
in := []initializer{
|
in := []initializer{
|
||||||
{bridge.Init, "bridge"},
|
{bridge.Init, "bridge"},
|
||||||
{host.Init, "host"},
|
{host.Init, "host"},
|
||||||
|
{macvlan.Init, "macvlan"},
|
||||||
{null.Init, "null"},
|
{null.Init, "null"},
|
||||||
{remote.Init, "remote"},
|
{remote.Init, "remote"},
|
||||||
{overlay.Init, "overlay"},
|
{overlay.Init, "overlay"},
|
||||||
|
|
Loading…
Reference in a new issue