We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Observed Behavior:
TOKEN=$(curl -s "https://public.ecr.aws/token/?scope=aws&service=public.ecr.com" | jq -r .token) curl -s -L -H "Authorization: Bearer $TOKEN" "https://public.ecr.aws/v2/karpenter/karpenter/tags/list" # Full of garbage versions like "v0-dcbb2d8de30e7c4f13670cf3bffd3d47a324d662" or "20221116"
Following the Link headers to see more tags quickly leads to HTTP 429 Too Many Requests.
Link
Expected Behavior:
$ TOKEN=$(curl -s "https://public.ecr.aws/token/?scope=aws&service=public.ecr.com" | jq -r .token) $ curl -s -L -H "Authorization: Bearer $TOKEN" "https://public.ecr.aws/v2/karpenter/karpenter/tags/list" HTTP/2 200 date: Wed, 04 Dec 2024 13: 18: 37 GMT content-type: text/plain; charset=utf-8 docker-distribution-api-version: registry/2.0 { "name": "karpenter/karpenter", "tags": [ "v0.31.1", "v0.18.0", "0.36.2", "v0.32.3", "v0.34.7", "v0.27.3", "0.35.9", "v0.28.0-rc.2", "0.36.5", "v0.25.0", "v0.22.0", [...]
Note
I rely on this to check if the charts I deploy are up to date. This will also be an issue for people using version specifiers like "~1.1.0" or 1.1.*.
1.1.*
The text was updated successfully, but these errors were encountered:
At this point, I'd agree that we can clean-up old tags that contain hashes and just work our way down to only semver tags.
Sorry, something went wrong.
No branches or pull requests
Description
Observed Behavior:
Following the
Link
headers to see more tags quickly leads to HTTP 429 Too Many Requests.Expected Behavior:
Note
I rely on this to check if the charts I deploy are up to date.
This will also be an issue for people using version specifiers like "~1.1.0" or
1.1.*
.The text was updated successfully, but these errors were encountered: