Skip to content

Commit 92cd1fe

Browse files
chrisplotiewei
authored andcommitted
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]>
1 parent fd6eb17 commit 92cd1fe

File tree

4 files changed

+50
-13
lines changed

4 files changed

+50
-13
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -367,6 +367,7 @@ demo-v2plugin: ssh-build make-on-node1-dep v2plugin-install
367367
host-plugin-release: tar host-pluginfs-create host-pluginfs-unpack host-plugin-create
368368
@echo dev: pushing ${CONTIV_V2PLUGIN_NAME} to docker hub
369369
@echo dev: need docker login with user in contiv org
370+
@echo "dev: docker login --username <username>"
370371
docker plugin push ${CONTIV_V2PLUGIN_NAME}
371372

372373
# unarchive versioned binaries to bin, usually as a helper for other targets

install/v2plugin/README.md

+11-9
Original file line numberDiff line numberDiff line change
@@ -28,16 +28,18 @@ plugin_role : In 'master' role, plugin runs netmaster : master
2828
listen_url : Netmaster url to listen http requests on : ":9999"
2929
control_url : Netmaster url for control messages : ":9999"
3030
dbg_flag : To enable debug mode, set to '-debug' : ""
31+
fwd_mode : Forwarding mode : ""
32+
3133
```
3234
### docker store
3335
Docker certified contiv plugin is avaliable on [Docker Store](https://store.docker.com/plugins/803eecee-0780-401a-a454-e9523ccf86b3?tab=description).
3436
```
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>
3638
```
3739
### docker hub
3840
Developer release of v2plugin from contiv repo is also pushed to docker hub
3941
```
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>
4143
```
4244
### vagrant dev/demo setup
4345
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
4850
## Contiv plugin-roles
4951
Contiv plugin runs both netplugin and netmaster by default. Contiv v2plugin can be run with only netplugin by setting the plugin_role to worker.
5052
```
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>
5254
```
5355

5456
## 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
6870
3. Install contiv v2plugin
6971
```
7072
# 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>
7274
( allow/grant the install permissions when prompted )
7375
7476
# 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>
7678
7779
# to see if the plugin is installed and enabled
7880
docker plugin ls
@@ -81,7 +83,7 @@ docker plugin install contiv/v2plugin:<version-tag> iflist=<data ifs used for vl
8183
```
8284
```
8385
If there are multiple local interfaces you need to specify the local IP address to use.
84-
docker plugin install contiv/v2plugin:<version-tag> ctrl_ip=192.168.2.10 control_url=192.168.2.10:9999 iflist=eth2,eth3
86+
docker plugin install contiv/v2plugin:<version-tag> ctrl_ip=192.168.2.10 control_url=192.168.2.10:9999 iflist=eth2,eth3 fwd_mode=bridge
8587
```
8688
4. Debug logs
8789
```
@@ -128,15 +130,15 @@ docker plugin install contiv/v2plugin:<version-tag> iflist=<data ifs used for vl
128130
1. Etcd cluster should be brought up on the hosts on localhost:2379.
129131
2. Install contiv v2plugin
130132
```
131-
docker plugin install contiv/v2plugin:<version-tag> plugin-mode=docker iflist=<data ifs used for vlan networks>
133+
docker plugin install contiv/v2plugin:<version-tag> plugin-mode=docker iflist=<data ifs used for vlan networks> fwd_mode=<bridge/routing>
132134
( allow/grant the install permissions when prompted )
133135
134136
# on node where netmaster needs to run, install plugin with 'master' role
135-
docker plugin install contiv/v2plugin:<version-tag> plugin_role=master iflist=<data ifs used for vlan networks>
137+
docker plugin install contiv/v2plugin:<version-tag> plugin_role=master iflist=<data ifs used for vlan networks> fwd_mode=<bridge/routing>
136138
( allow/grant the install permissions when prompted )
137139
138140
# on all other nodes, install plugin with 'worker' role
139-
docker plugin install contiv/v2plugin:<version-tag> plugin_role=worker iflist=<data ifs used for vlan networks>
141+
docker plugin install contiv/v2plugin:<version-tag> plugin_role=worker iflist=<data ifs used for vlan networks> fwd_mode=<bridge/routing>
140142
141143
# to see if the plugin is installed properly and enabled
142144
docker plugin ls

install/v2plugin/config.template

+8
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,14 @@
103103
],
104104
## Do not change the default value, this will be replaced with $CONTIV_V2PLUGIN_NAME
105105
"Value": "__CONTIV_V2PLUGIN_NAME__"
106+
},
107+
{
108+
"Description": "Forwarding mode for netplugin",
109+
"Name": "fwd_mode",
110+
"Settable": [
111+
"value"
112+
],
113+
"Value": ""
106114
}
107115
],
108116
"mounts": [

install/v2plugin/startcontiv.sh

+30-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,19 @@
33
### Pre-requisite on the host
44
# run a cluster store like etcd or consul
55

6+
set -e
7+
68
if [ $log_dir == "" ]; then
79
log_dir="/var/log/contiv"
810
fi
911
BOOTUP_LOGFILE="$log_dir/plugin_bootup.log"
1012

13+
# Redirect stdout and stdin to BOOTUP_LOGFILE
14+
exec 1<&- # Close stdout
15+
exec 2<&- # Close stderr
16+
exec 1<>$BOOTUP_LOGFILE # stdout read and write to logfile instead of console
17+
exec 2>&1 # redirect stderr to where stdout is (logfile)
18+
1119
mkdir -p $log_dir
1220
mkdir -p /var/run/openvswitch
1321
mkdir -p /etc/openvswitch
@@ -33,8 +41,6 @@ if [ $vxlan_port != "4789" ]; then
3341
vxlan_port_cfg="-vxlan-port=$vxlan_port"
3442
fi
3543

36-
set -e
37-
3844
echo "Loading OVS" >> $BOOTUP_LOGFILE
3945
(modprobe openvswitch) || (echo "Load ovs FAILED!!! " >> $BOOTUP_LOGFILE)
4046

@@ -50,7 +56,7 @@ echo " Starting OVSBD server " >> $BOOTUP_LOGFILE
5056
ovsdb-server --remote=punix:/var/run/openvswitch/db.sock --remote=db:Open_vSwitch,Open_vSwitch,manager_options --private-key=db:Open_vSwitch,SSL,private_key --certificate=db:Open_vSwitch,SSL,certificate --bootstrap-ca-cert=db:Open_vSwitch,SSL,ca_cert --log-file=$log_dir/ovs-db.log -vsyslog:dbg -vfile:dbg --pidfile --detach /etc/openvswitch/conf.db >> $BOOTUP_LOGFILE
5157
echo " Starting ovs-vswitchd " >> $BOOTUP_LOGFILE
5258
ovs-vswitchd -v --pidfile --detach --log-file=$log_dir/ovs-vswitchd.log -vconsole:err -vsyslog:info -vfile:info &
53-
ovs-vsctl set-manager tcp:127.0.0.1:6640
59+
ovs-vsctl set-manager tcp:127.0.0.1:6640
5460
ovs-vsctl set-manager ptcp:6640
5561

5662
echo "Started OVS, logs in $log_dir" >> $BOOTUP_LOGFILE
@@ -68,6 +74,10 @@ while true ; do
6874
done &
6975

7076
if [ $plugin_role == "master" ]; then
77+
if [ -z "$fwd_mode" ]; then
78+
echo "fwd_mode is not set, plugin cannot be enabled"
79+
exit 1
80+
fi
7181
echo "Starting Netmaster " >> $BOOTUP_LOGFILE
7282
while true ; do
7383
echo "/netmaster $dbg_flag -plugin-name=$plugin_name -cluster-mode=$plugin_mode -cluster-store=$cluster_store $listen_url_cfg $control_url_cfg" >> $BOOTUP_LOGFILE
@@ -77,9 +87,25 @@ if [ $plugin_role == "master" ]; then
7787
sleep 5
7888
echo "Restarting Netmaster " >> $BOOTUP_LOGFILE
7989
done &
90+
91+
set -e
92+
echo "Waiting for netmaster to be ready for connections"
93+
# wait till netmaster starts to listen
94+
for i in $(seq 1 10); do
95+
[ "$(curl -s -o /dev/null -w '%{http_code}' $control_url)" != "000" ] \
96+
&& break
97+
sleep 1
98+
done
99+
if [ "$i" -ge "10" ]; then
100+
echo "netmaster port not open (needed to set forwarding mode), plugin failed"
101+
exit 1
102+
fi
103+
sleep 1
104+
echo "Netmaster ready for connections, setting forward mode to $fwd_mode"
105+
/netctl --netmaster http://$control_url global set --fwd-mode "$fwd_mode"
106+
echo "Forward mode is set"
80107
else
81108
echo "Not starting netmaster as plugin role is" $plugin_role >> $BOOTUP_LOGFILE
82109
fi
83110

84111
while true; do sleep 1; done
85-

0 commit comments

Comments
 (0)