forked from contiv/netplugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartcontiv.sh
executable file
·110 lines (93 loc) · 4.24 KB
/
startcontiv.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/sh
### Pre-requisite on the host
# run a cluster store like etcd or consul
set -eu
if [ $log_dir == "" ]; then
log_dir="/var/log/contiv"
fi
BOOTUP_LOGFILE="$log_dir/plugin_bootup.log"
# Redirect stdout and stdin to BOOTUP_LOGFILE
exec 1<&- # Close stdout
exec 2<&- # Close stderr
exec 1<>$BOOTUP_LOGFILE # stdout read and write to logfile instead of console
exec 2>&1 # redirect stderr to where stdout is (logfile)
mkdir -p $log_dir
mkdir -p /var/run/openvswitch
mkdir -p /etc/openvswitch
echo "V2 Plugin logs" > $BOOTUP_LOGFILE
if [ $iflist == "" ]; then
echo "iflist is empty. Host interface(s) should be specified to use vlan mode" >> $BOOTUP_LOGFILE
fi
if [ $ctrl_ip != "none" ]; then
ctrl_ip_cfg="-ctrl-ip=$ctrl_ip"
fi
if [ $vtep_ip != "none" ]; then
vtep_ip_cfg="-vtep-ip=$vtep_ip"
fi
if [ $listen_url != ":9999" ]; then
listen_url_cfg="-listen-url=$listen_url"
fi
if [ $control_url != ":9999" ]; then
control_url_cfg="-control-url=$control_url"
fi
if [ $vxlan_port != "4789" ]; then
vxlan_port_cfg="-vxlan-port=$vxlan_port"
fi
echo "Loading OVS" >> $BOOTUP_LOGFILE
(modprobe openvswitch) || (echo "Load ovs FAILED!!! " >> $BOOTUP_LOGFILE)
echo " Cleaning up ovsdb files" >> $BOOTUP_LOGFILE
rm -rf /var/run/openvswitch/*
rm -rf /etc/openvswitch/conf.db
rm -rf /etc/openvswitch/.conf.db.~lock~
echo " Creating OVS DB" >> $BOOTUP_LOGFILE
(ovsdb-tool create /etc/openvswitch/conf.db /usr/share/openvswitch/vswitch.ovsschema) || (while true; do sleep 1; done)
echo " Starting OVSBD server " >> $BOOTUP_LOGFILE
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
echo " Starting ovs-vswitchd " >> $BOOTUP_LOGFILE
ovs-vswitchd -v --pidfile --detach --log-file=$log_dir/ovs-vswitchd.log -vconsole:err -vsyslog:info -vfile:info &
ovs-vsctl set-manager tcp:127.0.0.1:6640
ovs-vsctl set-manager ptcp:6640
echo "Started OVS, logs in $log_dir" >> $BOOTUP_LOGFILE
set +e
echo "Starting Netplugin " >> $BOOTUP_LOGFILE
while true ; do
echo "/netplugin $dbg_flag -plugin-mode=$plugin_mode $vxlan_port_cfg -vlan-if=$iflist -cluster-store=$cluster_store $ctrl_ip_cfg $vtep_ip_cfg" >> $BOOTUP_LOGFILE
/netplugin $dbg_flag -plugin-mode=$plugin_mode $vxlan_port_cfg -vlan-if=$iflist -cluster-store=$cluster_store $ctrl_ip_cfg $vtep_ip_cfg &> $log_dir/netplugin.log
echo "CRITICAL : Net Plugin has exited, Respawn in 5" >> $BOOTUP_LOGFILE
mv $log_dir/netplugin.log $log_dir/netplugin.log.lastrun
sleep 5
echo "Restarting Netplugin " >> $BOOTUP_LOGFILE
done &
if [ $plugin_role == "master" ]; then
if [ -z "$fwd_mode" ]; then
echo "fwd_mode is not set, plugin cannot be enabled"
exit 1
fi
echo "Starting Netmaster " >> $BOOTUP_LOGFILE
while true ; do
echo "/netmaster $dbg_flag -plugin-name=$plugin_name -cluster-mode=$plugin_mode -cluster-store=$cluster_store $listen_url_cfg $control_url_cfg" >> $BOOTUP_LOGFILE
/netmaster $dbg_flag -plugin-name=$plugin_name -cluster-mode=$plugin_mode -cluster-store=$cluster_store $listen_url_cfg $control_url_cfg &> $log_dir/netmaster.log
echo "CRITICAL : Net Master has exited, Respawn in 5s" >> $BOOTUP_LOGFILE
mv $log_dir/netmaster.log $log_dir/netmaster.log.lastrun
sleep 5
echo "Restarting Netmaster " >> $BOOTUP_LOGFILE
done &
echo "Waiting for netmaster to be ready for connections"
# wait till netmaster starts to listen
for i in $(seq 1 10); do
[ "$(curl -s -o /dev/null -w '%{http_code}' $control_url)" != "000" ] \
&& break
sleep 1
done
if [ "$i" -ge "10" ]; then
echo "Failed to set forwarding mode, plugin will fail to enable"
exit 1
fi
sleep 1
echo "Netmaster ready for connections, setting forward mode to $fwd_mode"
/netctl --netmaster http://$control_url global set --fwd-mode "$fwd_mode"
echo "Forward mode is set"
else
echo "Not starting netmaster as plugin role is" $plugin_role >> $BOOTUP_LOGFILE
fi
while true; do sleep 1; done