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
registry.py -l user:password -r https://my-registry.tld with a 2.8.2 registry returns nothing.
registry.py -l user:password -r https://my-registry.tld
with --debug:
--debug
[debug][funcname]: get_auth_schemes() [debug][docker] Auth schemes found:['basic']
Checking with curl -u user:password 'https://my-registry.tld/v2/_catalog?n=10000 returns:
curl -u user:password 'https://my-registry.tld/v2/_catalog?n=10000
{"errors":[{"code":"PAGINATION_NUMBER_INVALID","message":"invalid number of results requested","detail":{"n":10000}}]}
This is caused by this commit where registry added a configurable limit of entries returned from /v2/_catalog that defaults to 1000.
/v2/_catalog
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
registry.py -l user:password -r https://my-registry.tld
with a 2.8.2 registry returns nothing.with
--debug
:Checking with
curl -u user:password 'https://my-registry.tld/v2/_catalog?n=10000
returns:This is caused by this commit where registry added a configurable limit of entries returned from
/v2/_catalog
that defaults to 1000.The text was updated successfully, but these errors were encountered: