Skip to content

Commit d298b49

Browse files
committed
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 contiv#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. Signed-off-by: Chris Plock <[email protected]>
1 parent fd6eb17 commit d298b49

File tree

2 files changed

+33
-4
lines changed

2 files changed

+33
-4
lines changed

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": "bridge"
106114
}
107115
],
108116
"mounts": [

install/v2plugin/startcontiv.sh

+25-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 -eu
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
@@ -77,9 +83,24 @@ if [ $plugin_role == "master" ]; then
7783
sleep 5
7884
echo "Restarting Netmaster " >> $BOOTUP_LOGFILE
7985
done &
86+
87+
echo "Waiting for netmaster to be ready for connections"
88+
# wait till netmaster starts to listen
89+
for i in $(seq 1 10); do
90+
[ "$(curl -s -o /dev/null -w '%{http_code}' $control_url)" != "000" ] \
91+
&& break
92+
sleep 1
93+
done
94+
if [ "$i" -ge "10" ]; then
95+
echo "Failed to set forwarding mode, plugin will fail to enable"
96+
exit 1
97+
fi
98+
sleep 1
99+
echo "Netmaster ready for connections, setting forward mode to $fwd_mode"
100+
/netctl --netmaster http://$control_url global set --fwd-mode "$fwd_mode"
101+
echo "Forward mode is set"
80102
else
81103
echo "Not starting netmaster as plugin role is" $plugin_role >> $BOOTUP_LOGFILE
82104
fi
83105

84106
while true; do sleep 1; done
85-

0 commit comments

Comments
 (0)