Skip to content

Commit c0a5036

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 c0a5036

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
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

+15-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ echo " Starting OVSBD server " >> $BOOTUP_LOGFILE
5050
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
5151
echo " Starting ovs-vswitchd " >> $BOOTUP_LOGFILE
5252
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
53+
ovs-vsctl set-manager tcp:127.0.0.1:6640
5454
ovs-vsctl set-manager ptcp:6640
5555

5656
echo "Started OVS, logs in $log_dir" >> $BOOTUP_LOGFILE
@@ -77,9 +77,22 @@ if [ $plugin_role == "master" ]; then
7777
sleep 5
7878
echo "Restarting Netmaster " >> $BOOTUP_LOGFILE
7979
done &
80+
81+
echo "Waiting for netmaster to be ready for connections" >> $BOOTUP_LOGFILE
82+
# wait till netmaster starts to listen
83+
for i in {1..10}; do
84+
curl --connect-timeout 1 --max-time 2 -s --fail $control_url >/dev/null \
85+
&& break
86+
done
87+
if (( i >= 10 )); then
88+
echo "Failed to set forwarding mode, plugin will fail to enable" >> $BOOTUP_LOGFILE
89+
exit 1
90+
fi
91+
echo "Netmaster is ready for connections, setting forward mode" >> $BOOTUP_LOGFILE
92+
netctl --netmaster $contol_url global set --fwd-mode "$fwd_mode"
93+
echo "Forward mode is set" >> $BOOTUP_LOGFILE
8094
else
8195
echo "Not starting netmaster as plugin role is" $plugin_role >> $BOOTUP_LOGFILE
8296
fi
8397

8498
while true; do sleep 1; done
85-

0 commit comments

Comments
 (0)