@@ -3,6 +3,7 @@ package systemtests
3
3
import (
4
4
"flag"
5
5
"os"
6
+ "os/exec"
6
7
"strconv"
7
8
"strings"
8
9
. "testing"
@@ -26,6 +27,7 @@ type systemtestSuite struct {
26
27
fwdMode string
27
28
clusterStore string
28
29
enableDNS bool
30
+ scheduler string
29
31
// user string
30
32
// password string
31
33
// nodes []string
@@ -58,6 +60,9 @@ func TestMain(m *M) {
58
60
} else {
59
61
flag .StringVar (& sts .fwdMode , "fwd-mode" , "routing" , "forwarding mode to start the test " )
60
62
}
63
+ if os .Getenv ("CONTIV_K8" ) != "" {
64
+ flag .StringVar (& sts .scheduler , "scheduler" , "k8" , "scheduler used for testing" )
65
+ }
61
66
flag .Parse ()
62
67
63
68
logrus .Infof ("Running system test with params: %+v" , sts )
@@ -92,6 +97,10 @@ func (s *systemtestSuite) SetUpSuite(c *C) {
92
97
93
98
s .nodes = []* node {}
94
99
100
+ if s .scheduler == "k8" {
101
+ s .KubeNodeSetup (c )
102
+ }
103
+
95
104
if s .fwdMode == "routing" {
96
105
contivL3Nodes := 2
97
106
c .Assert (s .vagrant .Setup (false , "CONTIV_NODES=3 CONTIV_L3=2" , contivNodes + contivL3Nodes ), IsNil )
@@ -191,3 +200,8 @@ func (s *systemtestSuite) Test00SSH(c *C) {
191
200
return node .RunCommand ("true" )
192
201
}), IsNil )
193
202
}
203
+
204
+ func (s * systemtestSuite ) KubeNodeSetup (c * C ) {
205
+ cmd := exec .Command ("/bin/sh" , "./vagrant/k8s/setup_cluster.sh" )
206
+ c .Assert (cmd .Run (), IsNil )
207
+ }
0 commit comments