Stop waiting on conformance image pod when it fails

Change-Id: I516833167f8e0aaa0e7962c1d6bdbe2ca422dc6e
This commit is contained in:
Davanum Srinivas 2019-03-07 11:02:43 -05:00
parent dcbe588f76
commit 200af47128
No known key found for this signature in database
GPG Key ID: 80D83A796103BF59

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