Merge pull request #606 from erikwilson/sonobuoy-cleanup-2

Clean up sonobuoy scripts
This commit is contained in:
Erik Wilson 2019-07-02 15:12:06 -07:00 committed by GitHub
commit ebb12c74c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,10 +173,10 @@ export -f sonobuoy-test
sonobuoy-retry-test() {
SECONDS=0
LIMIT=300
for i in seq 1 3; do
for i in $(seq 1 3); do
sonobuoy-test "${@}" && return
echo "Failed sonobuoy try #${i}"
if [[ "$SECONDS" > "$LIMIT" ]]; then
if [ "$SECONDS" -gt "$LIMIT" ]; then
echo "Stopping sonobuoy re-try after ${SECONDS} seconds (limit ${LIMIT}s)"
break
fi