Skip to content

Commit d56170b

Browse files
committed
second commit
1 parent e01f0ad commit d56170b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

systemtests/init_test.go

+14
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package systemtests
33
import (
44
"flag"
55
"os"
6+
"os/exec"
67
"strconv"
78
"strings"
89
. "testing"
@@ -26,6 +27,7 @@ type systemtestSuite struct {
2627
fwdMode string
2728
clusterStore string
2829
enableDNS bool
30+
scheduler string
2931
// user string
3032
// password string
3133
// nodes []string
@@ -58,6 +60,9 @@ func TestMain(m *M) {
5860
} else {
5961
flag.StringVar(&sts.fwdMode, "fwd-mode", "routing", "forwarding mode to start the test ")
6062
}
63+
if os.Getenv("CONTIV_K8") != "" {
64+
flag.StringVar(&sts.scheduler, "scheduler", "k8", "scheduler used for testing")
65+
}
6166
flag.Parse()
6267

6368
logrus.Infof("Running system test with params: %+v", sts)
@@ -92,6 +97,10 @@ func (s *systemtestSuite) SetUpSuite(c *C) {
9297

9398
s.nodes = []*node{}
9499

100+
if s.scheduler == "k8" {
101+
s.KubeNodeSetup(c)
102+
}
103+
95104
if s.fwdMode == "routing" {
96105
contivL3Nodes := 2
97106
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) {
191200
return node.RunCommand("true")
192201
}), IsNil)
193202
}
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

Comments
 (0)