Skip to content

Commit 33a4d5f

Browse files
authored
Merge pull request #929 from contiv/master
merge for release 1.1.1
2 parents 1871c0c + 1e2213f commit 33a4d5f

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@ host-integ-test: host-cleanup start-aci-gw
262262

263263
start-aci-gw:
264264
@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
267267

268268
host-build-docker-image:
269269
./scripts/netContain/build_image.sh

scripts/netContain/scripts/contivNet.sh

+8-8
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,15 @@ while getopts ":xmp:v:i:c:drl:o:" opt; do
7676
esac
7777
done
7878

79+
if [ $cleanup == false ] && [ $netplugin == true ]; then
80+
echo "Initializing OVS"
81+
/contiv/scripts/ovsInit.sh
82+
echo "Initialized OVS"
83+
fi
84+
7985
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
8188
for p in $(ifconfig | grep vport | awk '{print $1}'); do
8289
ip link delete $p type veth
8390
done
@@ -94,12 +101,6 @@ if [ $netplugin == false ] && [ $netmaster == false ]; then
94101
exit 1
95102
fi
96103

97-
if [ $netplugin == true ]; then
98-
echo "Initializing OVS"
99-
/contiv/scripts/ovsInit.sh
100-
echo "Initialized OVS"
101-
fi
102-
103104
mkdir -p /opt/contiv/
104105
mkdir -p /var/contiv/log/
105106

@@ -134,7 +135,6 @@ if [ $netmaster == true ]; then
134135
done
135136
elif [ $netplugin == true ]; then
136137
echo "Starting netplugin"
137-
modprobe openvswitch
138138

139139
while true; do
140140
if [ -f /tmp/restart_netplugin ]; then

scripts/netContain/scripts/ovsInit.sh

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
set -euo pipefail
55

6+
modprobe openvswitch
7+
68
mkdir -p /var/run/openvswitch
79

810
sleep 2

0 commit comments

Comments
 (0)