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
I stumbled on this, when I was using an ImagePolicy with policy.semver.range defined.
Some repositories strip the patch version when doing a minor release, e.g. kubernetes-event-exporter. The image-reflector-controller cant evaluate the latest tag of such tags and logs: unable to determine latest version from provided list.
We see this because we check for a strict semver in ParseVersion, even though semver.NewVersion is used to return the version which could actually handle missing patch versions, like 1.1.
The text was updated successfully, but these errors were encountered:
I stumbled on this, when I was using an ImagePolicy with
policy.semver.range
defined.Some repositories strip the patch version when doing a minor release, e.g. kubernetes-event-exporter. The image-reflector-controller cant evaluate the latest tag of such tags and logs:
unable to determine latest version from provided list
.ImagePolicy
We see this because we check for a strict semver in ParseVersion, even though
semver.NewVersion
is used to return the version which could actually handle missing patch versions, like1.1
.The text was updated successfully, but these errors were encountered: