@@ -76,7 +76,8 @@ def createV2Plugin(self, args=""):
76
76
# Enable v2plugin on vagrant node
77
77
def enableV2Plugin (self , role = "master" , args = "" ):
78
78
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"
80
81
self .runCmd (command )
81
82
command = "docker plugin enable " + os .environ .get ("CONTIV_V2PLUGIN_NAME" , "contiv/v2plugin:0.0" ) + args + " >> /tmp/netplugin.log 2>&1"
82
83
self .npThread = threading .Thread (target = ssh_exec_thread , args = (ssh_object , command ))
@@ -107,13 +108,13 @@ def startNetmaster(self):
107
108
# npThread.setDaemon(True)
108
109
self .nmThread .start ()
109
110
110
- # Execute command in a thread
111
+ # Execute command in a thread
111
112
def runCmdThread (self , command ):
112
113
ssh_object = self .sshConnect (self .username , self .password )
113
114
self .swThread = threading .Thread (target = ssh_exec_thread , args = (ssh_object , command ))
114
115
self .swThread .start ()
115
-
116
- # Stop v2plugin by force rm
116
+
117
+ # Stop v2plugin by force rm
117
118
def stopV2Plugin (self , args = "" ):
118
119
command = "docker plugin disable " + os .environ .get ("CONTIV_V2PLUGIN_NAME" , "contiv/v2plugin:0.0" ) + "> /tmp/netplugin.log 2>&1"
119
120
command = "docker plugin rm -f " + os .environ .get ("CONTIV_V2PLUGIN_NAME" , "contiv/v2plugin:0.0" ) + "> /tmp/netplugin.log 2>&1"
0 commit comments