summaryrefslogtreecommitdiff
path: root/libnetwork/drivers_linux.go
diff options
context:
space:
mode:
authorMadhu Venugopal <madhu@docker.com>2018-07-11 21:42:01 -0700
committerMadhu Venugopal <madhu@docker.com>2018-09-25 10:30:56 -0700
commitf7b7e74624f7d1c056e5277eae19b74a5eca7bf0 (patch)
treefeea339392e47e538fd4f201d24c0095b831b492 /libnetwork/drivers_linux.go
parentbe9fe156d58f3747922aa817a0029c6101770c18 (diff)
downloaddocker-f7b7e74624f7d1c056e5277eae19b74a5eca7bf0.tar.gz
Moving IPVLAN driver out of experimental
IPVLAN driver had been retained in experimental for multiple releases with the requirement to have a proper L3 control-plane (such as BGP) to go along with it which will make this driver much more useful. But based on the community feedback, https://github.com/moby/moby/issues/21735, am proposing to move this driver out of experimental. Signed-off-by: Madhu Venugopal <madhu@docker.com>
Diffstat (limited to 'libnetwork/drivers_linux.go')
-rw-r--r--libnetwork/drivers_linux.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/libnetwork/drivers_linux.go b/libnetwork/drivers_linux.go
index c53d516fa6..0462b86e67 100644
--- a/libnetwork/drivers_linux.go
+++ b/libnetwork/drivers_linux.go
@@ -3,6 +3,7 @@ package libnetwork
import (
"github.com/docker/libnetwork/drivers/bridge"
"github.com/docker/libnetwork/drivers/host"
+ "github.com/docker/libnetwork/drivers/ipvlan"
"github.com/docker/libnetwork/drivers/macvlan"
"github.com/docker/libnetwork/drivers/null"
"github.com/docker/libnetwork/drivers/overlay"
@@ -13,10 +14,11 @@ func getInitializers(experimental bool) []initializer {
in := []initializer{
{bridge.Init, "bridge"},
{host.Init, "host"},
+ {ipvlan.Init, "ipvlan"},
{macvlan.Init, "macvlan"},
{null.Init, "null"},
- {remote.Init, "remote"},
{overlay.Init, "overlay"},
+ {remote.Init, "remote"},
}
if experimental {