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
To cope with the semver range limitation where it's not possible to select only pre-releases, I propose we introduce regex filtering capabilities similar to what we have in ImagePolicy.
Example of selecting only pre-releases:
apiVersion: source.toolkit.fluxcd.io/v1beta2kind: OCIRepositorymetadata:
name: podinfonamespace: defaultspec:
interval: 5m0surl: oci://ghcr.io/stefanprodan/manifests/podinforef:
semver: '>=1.0.0-0'# select latest version stable and pre-releasessemverFilter: '.*-rc.*'# include only release candidates
The text was updated successfully, but these errors were encountered:
To cope with the semver range limitation where it's not possible to select only pre-releases, I propose we introduce regex filtering capabilities similar to what we have in
ImagePolicy
.Example of selecting only pre-releases:
The text was updated successfully, but these errors were encountered: