File tree 3 files changed +12
-10
lines changed
scripts/netContain/scripts
3 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -262,8 +262,8 @@ host-integ-test: host-cleanup start-aci-gw
262
262
263
263
start-aci-gw :
264
264
@echo dev: starting aci gw...
265
- docker pull contiv/aci-gw:11-28-2016.1.3_2i
266
- docker run --net=host -itd -e " APIC_URL=SANITY" -e " APIC_USERNAME=IGNORE" -e " APIC_PASSWORD=IGNORE" --name=contiv-aci-gw contiv/aci-gw:11-28-2016.1.3_2i
265
+ docker pull contiv/aci-gw:04-12-2017.2.2_1n
266
+ docker run --net=host -itd -e " APIC_URL=SANITY" -e " APIC_USERNAME=IGNORE" -e " APIC_PASSWORD=IGNORE" --name=contiv-aci-gw contiv/aci-gw:04-12-2017.2.2_1n
267
267
268
268
host-build-docker-image :
269
269
./scripts/netContain/build_image.sh
Original file line number Diff line number Diff line change @@ -76,8 +76,15 @@ while getopts ":xmp:v:i:c:drl:o:" opt; do
76
76
esac
77
77
done
78
78
79
+ if [ $cleanup == false ] && [ $netplugin == true ]; then
80
+ echo " Initializing OVS"
81
+ /contiv/scripts/ovsInit.sh
82
+ echo " Initialized OVS"
83
+ fi
84
+
79
85
if [ $cleanup == true ] || [ $reinit == true ]; then
80
- ovs-vsctl list-br | grep contiv | xargs -I % ovs-vsctl del-br % > /dev/null 2>&1
86
+ ovs-vsctl del-br contivVlanBridge || true
87
+ ovs-vsctl del-br contivVxlanBridge || true
81
88
for p in $( ifconfig | grep vport | awk ' {print $1}' ) ; do
82
89
ip link delete $p type veth
83
90
done
@@ -94,12 +101,6 @@ if [ $netplugin == false ] && [ $netmaster == false ]; then
94
101
exit 1
95
102
fi
96
103
97
- if [ $netplugin == true ]; then
98
- echo " Initializing OVS"
99
- /contiv/scripts/ovsInit.sh
100
- echo " Initialized OVS"
101
- fi
102
-
103
104
mkdir -p /opt/contiv/
104
105
mkdir -p /var/contiv/log/
105
106
@@ -134,7 +135,6 @@ if [ $netmaster == true ]; then
134
135
done
135
136
elif [ $netplugin == true ]; then
136
137
echo " Starting netplugin"
137
- modprobe openvswitch
138
138
139
139
while true ; do
140
140
if [ -f /tmp/restart_netplugin ]; then
Original file line number Diff line number Diff line change 3
3
4
4
set -euo pipefail
5
5
6
+ modprobe openvswitch
7
+
6
8
mkdir -p /var/run/openvswitch
7
9
8
10
sleep 2
You can’t perform that action at this time.
0 commit comments