Merge pull request #75121 from dims/stop-waiting-on-conformance-image-pod-failure

Stop waiting on conformance image pod when it fails
This commit is contained in:
Kubernetes Prow Robot 2019-03-07 16:12:52 -08:00 committed by GitHub
commit fe74317c21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,6 +25,9 @@ while true; do
if [[ "$STATUS" == "Succeeded" ]]; then
echo "$timestamp Done."
break
elif [[ "$STATUS" == "Failed" ]]; then
echo "$timestamp Failed."
break
else
sleep 5
fi