Skip to content

Commit d6317f8

Browse files
author
Wei Tie
committed
Skip master nodes for checkings
Skip netmaster checkings on `verifyEPs`, `tcFilterShow` and `verifyVTEPs`, because no testing pods will be located on master nodes
1 parent 138cc15 commit d6317f8

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

test/systemtests/kubeadm_test.go

+9-1
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,9 @@ func (k *kubePod) startIperfClient(c *container, ip, limit string, isErr bool) e
405405
}
406406

407407
func (k *kubePod) tcFilterShow(bw string) error {
408-
408+
if k.isMaster() {
409+
return nil
410+
}
409411
qdiscShow, err := k.node.tbnode.RunCommandWithOutput("tc qdisc show")
410412
if err != nil {
411413
return err
@@ -869,6 +871,9 @@ func (k *kubePod) verifyAgents(agentIPs map[string]bool) (string, error) {
869871
}
870872

871873
func (k *kubePod) verifyVTEPs(expVTEPS map[string]bool) (string, error) {
874+
if k.isMaster() {
875+
return "", nil
876+
}
872877
var data interface{}
873878
actVTEPs := make(map[string]uint32)
874879

@@ -936,6 +941,9 @@ func (k *kubePod) verifyVTEPs(expVTEPS map[string]bool) (string, error) {
936941
}
937942

938943
func (k *kubePod) verifyEPs(epList []string) (string, error) {
944+
if k.isMaster() {
945+
return "", nil
946+
}
939947
// read ep information from inspect
940948
cmd := "curl -s localhost:9090/inspect/driver | python -mjson.tool"
941949
str, err := k.node.tbnode.RunCommandWithOutput(cmd)

0 commit comments

Comments
 (0)