File tree 2 files changed +30
-3
lines changed
2 files changed +30
-3
lines changed Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ spec:
100
100
# container programs network policy and routes on each
101
101
# host.
102
102
- name : contiv-netplugin
103
- image : contiv/netplugin:k8s_devtest
103
+ image : contiv/netplugin:latest
104
104
env :
105
105
- name : CONTIV_ROLE
106
106
value : netplugin
@@ -236,7 +236,7 @@ spec:
236
236
hostPID : true
237
237
containers :
238
238
- name : contiv-netmaster
239
- image : contiv/netplugin:k8s_devtest
239
+ image : contiv/netplugin:latest
240
240
env :
241
241
- name : CONTIV_ROLE
242
242
value : netmaster
Original file line number Diff line number Diff line change @@ -637,7 +637,34 @@ func (k *kubePod) runCommandUntilNoNetmasterError() error {
637
637
}
638
638
639
639
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" )
641
668
}
642
669
643
670
func (k * kubePod ) runCommandUntilNoNetpluginError () error {
You can’t perform that action at this time.
0 commit comments