Skip to content

Commit 78c1aa4

Browse files
Wei Tieunclejack
Wei Tie
authored andcommitted
systest fixing and misc
1 parent 53d7e29 commit 78c1aa4

File tree

2 files changed

+30
-3
lines changed

2 files changed

+30
-3
lines changed

install/k8s/contiv/contiv_devtest.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ spec:
100100
# container programs network policy and routes on each
101101
# host.
102102
- name: contiv-netplugin
103-
image: contiv/netplugin:k8s_devtest
103+
image: contiv/netplugin:latest
104104
env:
105105
- name: CONTIV_ROLE
106106
value: netplugin
@@ -236,7 +236,7 @@ spec:
236236
hostPID: true
237237
containers:
238238
- name: contiv-netmaster
239-
image: contiv/netplugin:k8s_devtest
239+
image: contiv/netplugin:latest
240240
env:
241241
- name: CONTIV_ROLE
242242
value: netmaster

test/systemtests/kubeadm_test.go

+28-1
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,34 @@ func (k *kubePod) runCommandUntilNoNetmasterError() error {
637637
}
638638

639639
processCheckCmd := `kubectl -n kube-system exec ` + podName + ` -- pgrep netmaster`
640-
return k8sMaster.runCommandUntilNoError(processCheckCmd)
640+
if err := k8sMaster.runCommandUntilNoError(processCheckCmd); err != nil {
641+
return err
642+
}
643+
return waitUntilAllPodsReady()
644+
}
645+
646+
func waitUntilAllPodsReady() error {
647+
// ensure all pods are running
648+
var cliErr error
649+
var badPodNum string
650+
// wait up to 10 min
651+
for retry := 120; retry > 0; retry-- {
652+
// can't use --no-headers because it will have non-zero return code
653+
badPodNum, cliErr = k8sMaster.tbnode.RunCommandWithOutput(`kubectl -n kube-system get pods -owide |grep -c -v Running`)
654+
if cliErr != nil {
655+
logrus.Warnf("Got error %q while fetching pod status, retry in 5 sec", cliErr.Error())
656+
} else if strings.TrimSpace(badPodNum) != "1" {
657+
logrus.Warnf("Found %q pods are not running, retry in 5 sec", strings.TrimSpace(badPodNum))
658+
} else {
659+
return nil
660+
}
661+
time.Sleep(5 * time.Second)
662+
}
663+
664+
if cliErr != nil {
665+
return cliErr
666+
}
667+
return errors.New("Failed to wait all pods to runnning status")
641668
}
642669

643670
func (k *kubePod) runCommandUntilNoNetpluginError() error {

0 commit comments

Comments
 (0)