You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
v2plugin set forward mode when netmaster up (#1058)
* v2plugin set forward mode when netmaster up
Docker expects the netplugin socket to be available within 10 seconds
before it fails enabling (or installing) the v2plugin.
Due to #1043, netplugin is blocking waiting for the forward mode to be
set, which is done by netctl calling netmaster, but netmaster is not
started until the plugin is activating.
Instead of backgrounding the plugin install/enabling then letting
ansible set the forward mode, do it in the plugin script to avoid
ansible's unpredictable round trip delays.
v2plugin’s startcontiv.sh errors when fwd_mode not set
Signed-off-by: Chris Plock <[email protected]>
listen_url : Netmaster url to listen http requests on : ":9999"
29
29
control_url : Netmaster url for control messages : ":9999"
30
30
dbg_flag : To enable debug mode, set to '-debug' : ""
31
+
fwd_mode : Forwarding mode : ""
32
+
31
33
```
32
34
### docker store
33
35
Docker certified contiv plugin is avaliable on [Docker Store](https://store.docker.com/plugins/803eecee-0780-401a-a454-e9523ccf86b3?tab=description).
34
36
```
35
-
docker plugin install store/contiv/v2plugin:<version-tag> iflist=<data ifs used for vlan networks>
37
+
docker plugin install store/contiv/v2plugin:<version-tag> iflist=<data ifs used for vlan networks> fwd_mode=<bridge/routing>
36
38
```
37
39
### docker hub
38
40
Developer release of v2plugin from contiv repo is also pushed to docker hub
39
41
```
40
-
docker plugin install contiv/v2plugin:<version-tag> iflist=<data ifs used for vlan networks>
42
+
docker plugin install contiv/v2plugin:<version-tag> iflist=<data ifs used for vlan networks> fwd_mode=<bridge/routing>
41
43
```
42
44
### vagrant dev/demo setup
43
45
To create a plugin from [contiv repo](https://github.com/contiv/netplugin), enable v2plugin and run docker in swarm-mode, use the Makefile target demo-v2plugin
@@ -48,7 +50,7 @@ make demo-v2plugin
48
50
## Contiv plugin-roles
49
51
Contiv plugin runs both netplugin and netmaster by default. Contiv v2plugin can be run with only netplugin by setting the plugin_role to worker.
50
52
```
51
-
docker plugin install contiv/v2plugin:<version-tag> iflist=<data ifs used for vlan networks> plugin_role=worker
53
+
docker plugin install contiv/v2plugin:<version-tag> iflist=<data ifs used for vlan networks> plugin_role=worker fwd_mode=<bridge/routing>
52
54
```
53
55
54
56
## Contiv plugin swarm-mode workflow (recommended and default for v2plugin)
@@ -68,11 +70,11 @@ docker plugin install contiv/v2plugin:<version-tag> iflist=<data ifs used for vl
68
70
3. Install contiv v2plugin
69
71
```
70
72
# on swarm manager node install plugin with 'master' role
71
-
docker plugin install contiv/v2plugin:<version-tag> plugin_role=master iflist=<data ifs used for vlan networks>
73
+
docker plugin install contiv/v2plugin:<version-tag> plugin_role=master iflist=<data ifs used for vlan networks> fwd_mode=<bridge/routing>
72
74
( allow/grant the install permissions when prompted )
73
75
74
76
# on worker nodes, install plugin with 'worker' role
75
-
docker plugin install contiv/v2plugin:<version-tag> plugin_role=worker iflist=<data ifs used for vlan networks>
77
+
docker plugin install contiv/v2plugin:<version-tag> plugin_role=worker iflist=<data ifs used for vlan networks> fwd_mode=<bridge/routing>
76
78
77
79
# to see if the plugin is installed and enabled
78
80
docker plugin ls
@@ -81,7 +83,7 @@ docker plugin install contiv/v2plugin:<version-tag> iflist=<data ifs used for vl
81
83
```
82
84
```
83
85
If there are multiple local interfaces you need to specify the local IP address to use.
0 commit comments