The current implementation only makes a single query to the v2 repository to get the list of tags. Some implementations (like Amazon's ECR) hard-limits the number of tags it reports to 100, so at most 100 tags will be skipped.
We need to check if the query returns a Link; rel="next" header and loop trough all pages until we have a complete list.
The current implementation only makes a single query to the v2 repository to get the list of tags. Some implementations (like Amazon's ECR) hard-limits the number of tags it reports to 100, so at most 100 tags will be skipped.
We need to check if the query returns a
Link; rel="next"
header and loop trough all pages until we have a complete list.Expect a PR fixing this in a few hours.