Skip to content

Commit 51e5f6f

Browse files
authored
Add extra validation check for v2plugin (#1096)
* Add extra validation check for v2plugin Currently, demo-v2plugin doesn't check if contiv is installed and enabled. This patchset is to check if v2plugin is installed and enabled at the end of the installation Signed-off-by: <[email protected]> * Update don't care variable * remove garbage text
1 parent a29e2c5 commit 51e5f6f

File tree

1 file changed

+18
-3
lines changed

1 file changed

+18
-3
lines changed

scripts/python/startSwarm.py

+18-3
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
# Start netplugin and netmaster
44
import api.tnode
5-
import time
6-
import sys
7-
import os
85
import argparse
6+
import os
7+
import re
8+
import time
99

1010
# Parse command line args
1111
# Create the parser and sub parser
@@ -45,6 +45,21 @@
4545
node.runCmdThread(command)
4646

4747
time.sleep(15)
48+
49+
print "Check netplugin is installed and enabled"
50+
out, _, _ = nodes[0].runCmd("docker plugin ls")
51+
52+
installed = re.search('contiv/v2plugin', out[1])
53+
54+
if installed == None:
55+
print "Make target failed: Contiv plugin is not installed"
56+
os._exit(1)
57+
58+
enabled = re.search('false', out[1])
59+
if enabled != None:
60+
print "Make target failed: Contiv plugin is installed but disabled"
61+
os._exit(1)
62+
4863
print "################### Swarm Mode is up #####################"
4964
else:
5065
swarmScript= scriptPath + "/start-swarm.sh"

0 commit comments

Comments
 (0)