Skip to content

Commit c43b0e9

Browse files
tieweichrisplo
authored andcommitted
Ensure ovs logging directory created before start service (#1028)
Without this patch, when a node first time start netplugin, and if there wasn't netmaster started ever on the node, the ovs logging directory will not exist and no logging will be able to be found. This patch makes sure the ovs logging directory created before service starts. Also added a wait step before ovsdb ready, and logging level. changes the indentation to 4 spaces and make codes more readable Signed-off-by: Wei Tie <[email protected]>
1 parent ecf9de2 commit c43b0e9

File tree

1 file changed

+37
-16
lines changed

1 file changed

+37
-16
lines changed

scripts/netContain/scripts/ovsInit.sh

+37-16
Original file line numberDiff line numberDiff line change
@@ -6,31 +6,52 @@ set -euo pipefail
66
modprobe openvswitch
77

88
mkdir -p /var/run/openvswitch
9+
mkdir -p /var/contiv/log/
910

1011
sleep 2
1112

1213
if [ -d "/etc/openvswitch" ]; then
13-
if [ -f "/etc/openvswitch/conf.db" ]; then
14-
echo "The Open vSwitch database exists"
15-
else
16-
echo "The Open VSwitch database doesn't exist"
17-
echo "Creating the Open VSwitch database..."
18-
ovsdb-tool create /etc/openvswitch/conf.db /usr/share/openvswitch/vswitch.ovsschema
19-
fi
14+
if [ -f "/etc/openvswitch/conf.db" ]; then
15+
echo "INFO: The Open vSwitch database exists"
16+
else
17+
echo "INFO: The Open VSwitch database doesn't exist"
18+
echo "INFO: Creating the Open VSwitch database..."
19+
ovsdb-tool create /etc/openvswitch/conf.db /usr/share/openvswitch/vswitch.ovsschema
20+
fi
2021
else
21-
echo "Open vSwitch not mounted from host"
22+
echo "CRITICAL: Open vSwitch is not mounted from host"
23+
exit 1
2224
fi
2325

24-
echo "Starting ovsdb-server..."
25-
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=/var/contiv/log/ovs-db.log -vsyslog:dbg -vfile:dbg --pidfile --detach /etc/openvswitch/conf.db
26-
27-
echo "Starting ovs-vswitchd"
28-
ovs-vswitchd -v --pidfile --detach --log-file=/var/contiv/log/ovs-vswitchd.log -vconsole:err -vsyslog:info -vfile:info &
29-
30-
echo "Setting OVS manager (tcp)..."
26+
echo "INFO: Starting ovsdb-server..."
27+
ovsdb-server --remote=punix:/var/run/openvswitch/db.sock \
28+
--remote=db:Open_vSwitch,Open_vSwitch,manager_options \
29+
--private-key=db:Open_vSwitch,SSL,private_key \
30+
--certificate=db:Open_vSwitch,SSL,certificate \
31+
--bootstrap-ca-cert=db:Open_vSwitch,SSL,ca_cert \
32+
--log-file=/var/contiv/log/ovs-db.log -vsyslog:dbg -vfile:dbg \
33+
--pidfile --detach /etc/openvswitch/conf.db
34+
35+
echo "INFO: Starting ovs-vswitchd"
36+
ovs-vswitchd -v --pidfile --detach --log-file=/var/contiv/log/ovs-vswitchd.log \
37+
-vconsole:err -vsyslog:info -vfile:info &
38+
39+
retry=0
40+
while [[ $(ovsdb-client list-dbs | grep -c Open_vSwitch) -eq 0 ]] ; do
41+
if [[ ${retry} -eq 5 ]]; then
42+
echo "CRITICAL: Failed to start ovsdb in 5 seconds."
43+
exit 1
44+
else
45+
echo "INFO: Waiting for ovsdb to start..."
46+
sleep 1
47+
((retry+=1))
48+
fi
49+
done
50+
51+
echo "INFO: Setting OVS manager (tcp)..."
3152
ovs-vsctl set-manager tcp:127.0.0.1:6640
3253

33-
echo "Setting OVS manager (ptcp)..."
54+
echo "INFO: Setting OVS manager (ptcp)..."
3455
ovs-vsctl set-manager ptcp:6640
3556

3657
exit 0

0 commit comments

Comments
 (0)