Add Logf message for skipped succeeded pods

This commit is contained in:
Jacob Gillespie 2018-05-22 12:40:20 -07:00
parent 31bf75c116
commit 98bc39dcd5
No known key found for this signature in database
GPG Key ID: 52D71192EF3DBDD9

View File

@ -704,7 +704,8 @@ func WaitForPodsRunningReady(c clientset.Interface, ns string, minPods, allowedN
case res && err == nil:
nOk++
case pod.Status.Phase == v1.PodSucceeded:
// pod status is succeeded, it doesn't make sense to wait for this pod
Logf("The status of Pod %s is Succeeded, skipping waiting", pod.ObjectMeta.Name)
// it doesn't make sense to wait for this pod
continue
case pod.Status.Phase != v1.PodFailed:
Logf("The status of Pod %s is %s (Ready = false), waiting for it to be either Running (with Ready = true) or Failed", pod.ObjectMeta.Name, pod.Status.Phase)