From 4523a875e426b1052bd3fb2a9789975da98d066e Mon Sep 17 00:00:00 2001 From: maskarb Date: Thu, 16 Jan 2025 12:33:43 -0500 Subject: [PATCH] arbitrarily bump tag limit --- ci/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/functions.sh b/ci/functions.sh index e65c696a4e..bd854b48a3 100755 --- a/ci/functions.sh +++ b/ci/functions.sh @@ -180,7 +180,7 @@ function wait_for_image() { local count=0 local max=60 # Try for up to 30 minutes - until podman image search --limit 500 --list-tags "${IMAGE}" | grep -q "${IMAGE_TAG}"; do + until podman image search --limit 1000 --list-tags "${IMAGE}" | grep -q "${IMAGE_TAG}"; do echo "${count}: Checking for image ${IMAGE}:${IMAGE_TAG}..." sleep 30 ((count+=1))