Skip to content

Commit 3e2217b

Browse files
ironashramsbe-arg
authored andcommitted
avoid issues for some quay images
Signed-off-by: Michele Palazzi <[email protected]>
1 parent 3c78ab0 commit 3e2217b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bin/pincher.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,9 @@ do
224224
break
225225
fi
226226

227-
latest_version_in_registry="$(curl -s https://quay.io/api/v1/repository/$image/tag/ | jq -r '.tags[].name' | sort -V -t. -k1,1 -k2,2 -k3,3 | grep -oP '^v?[0-9]+\.[0-9]+\.[0-9]+$' | tail -n 1)"
227+
# Set page limit to 100 to get more tags to avoids issues
228+
# with images that have many manifests without proper tags like prometheus
229+
latest_version_in_registry="$(curl -s https://quay.io/api/v1/repository/$image/tag/\?limit\=100\&page\=1 | jq -r '.tags[].name' | sort -V -t. -k1,1 -k2,2 -k3,3 | grep -oP '^v?[0-9]+\.[0-9]+\.[0-9]+$' | tail -n 1)"
228230

229231
# the magic
230232
[ -n "$latest_version_in_registry" ] && versions_magic

0 commit comments

Comments
 (0)