Skip to content

Commit 875b175

Browse files
tieweichrisplo
authored andcommitted
Fix netmaster starting script in tesing codes (#1064)
We need to add fwd_mode in netmaster starting code, also ensured log directory exists when start contiv v2plugin container. Signed-off-by: Wei Tie <[email protected]>
1 parent 92cd1fe commit 875b175

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

install/v2plugin/startcontiv.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55

66
set -e
77

8-
if [ $log_dir == "" ]; then
8+
if [ "$log_dir" == "" ]; then
99
log_dir="/var/log/contiv"
1010
fi
11+
mkdir -p $log_dir
1112
BOOTUP_LOGFILE="$log_dir/plugin_bootup.log"
1213

1314
# Redirect stdout and stdin to BOOTUP_LOGFILE

scripts/python/api/tnode.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ def createV2Plugin(self, args=""):
7676
# Enable v2plugin on vagrant node
7777
def enableV2Plugin(self, role="master", args=""):
7878
ssh_object = self.sshConnect(self.username, self.password)
79-
command = "docker plugin set " + os.environ.get("CONTIV_V2PLUGIN_NAME", "contiv/v2plugin:0.0") + " ctrl_ip="+ self.addr + " control_url=" + self.addr + ":9999 vxlan_port=8472 iflist=eth2,eth3 plugin_name=" + os.environ.get("CONTIV_V2PLUGIN_NAME","contiv/v2plugin:0.0") + args + " >> /tmp/netplugin.log 2>&1"
79+
fwd_mode = os.environ.get("CONTIV_V2PLUGIN_FWDMODE", "bridge")
80+
command = "docker plugin set " + os.environ.get("CONTIV_V2PLUGIN_NAME", "contiv/v2plugin:0.0") + " ctrl_ip="+ self.addr + " control_url=" + self.addr + ":9999 vxlan_port=8472 iflist=eth2,eth3 plugin_name=" + os.environ.get("CONTIV_V2PLUGIN_NAME","contiv/v2plugin:0.0") + " fwd_mode=" + fwd_mode + " " + args + " >> /tmp/netplugin.log 2>&1"
8081
self.runCmd(command)
8182
command = "docker plugin enable " + os.environ.get("CONTIV_V2PLUGIN_NAME", "contiv/v2plugin:0.0") + args + " >> /tmp/netplugin.log 2>&1"
8283
self.npThread = threading.Thread(target=ssh_exec_thread, args=(ssh_object, command))
@@ -107,13 +108,13 @@ def startNetmaster(self):
107108
# npThread.setDaemon(True)
108109
self.nmThread.start()
109110

110-
# Execute command in a thread
111+
# Execute command in a thread
111112
def runCmdThread(self, command):
112113
ssh_object = self.sshConnect(self.username, self.password)
113114
self.swThread = threading.Thread(target=ssh_exec_thread, args=(ssh_object, command))
114115
self.swThread.start()
115-
116-
# Stop v2plugin by force rm
116+
117+
# Stop v2plugin by force rm
117118
def stopV2Plugin(self, args=""):
118119
command = "docker plugin disable " + os.environ.get("CONTIV_V2PLUGIN_NAME", "contiv/v2plugin:0.0") + "> /tmp/netplugin.log 2>&1"
119120
command = "docker plugin rm -f " + os.environ.get("CONTIV_V2PLUGIN_NAME", "contiv/v2plugin:0.0") + "> /tmp/netplugin.log 2>&1"

0 commit comments

Comments
 (0)