You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The reason for that is: the pattern is matched against the fully qualified image reference, not the one given. Meaning in this case, the pattern docker.io/test:* is matched against index.docker.io/library/test:tag, which obviously fails. The reason for matching against the fully qualified reference is so that patterns like docker.io/* still match given images like redis.
For convenience reasons, I'd still be great, if the pattern docker.io/test:* would match docker.io/test:tag.
The text was updated successfully, but these errors were encountered:
Describe the feature
The current implementation for matching a rule pattern to an image reference fails on the following case:
The reason for that is: the pattern is matched against the fully qualified image reference, not the one given. Meaning in this case, the pattern
docker.io/test:*
is matched againstindex.docker.io/library/test:tag
, which obviously fails. The reason for matching against the fully qualified reference is so that patterns likedocker.io/*
still match given images likeredis
.For convenience reasons, I'd still be great, if the pattern
docker.io/test:*
would matchdocker.io/test:tag
.The text was updated successfully, but these errors were encountered: