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
Is your feature request related to a problem? Please describe.
Due to CI limitations I cannot build multiarch images directly, so i had first to upload x86_64/aarch64 images with arch suffix, then create manifest and push it back.
So as a result on "hidden" source registry i have images like:
base:latest
base:latest-x86_64
base:latest-aarch64
On the "frontend" registry, I'd like to sync only base:latest (or more like base:v1.2.3-g1234567).
The problem that go's regex do not have negate match operation, so it's impossible to write something like .+-(?!x86_64|aarch64)$
Describe the solution you'd like
Add to sync.registries.content.tags - reject_regex, which will filter-out any matched tag from syncing.
Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Due to CI limitations I cannot build multiarch images directly, so i had first to upload x86_64/aarch64 images with arch suffix, then create manifest and push it back.
So as a result on "hidden" source registry i have images like:
base:latest
base:latest-x86_64
base:latest-aarch64
On the "frontend" registry, I'd like to sync only
base:latest
(or more likebase:v1.2.3-g1234567
).The problem that go's regex do not have negate match operation, so it's impossible to write something like
.+-(?!x86_64|aarch64)$
Describe the solution you'd like
Add to
sync.registries.content.tags
-reject_regex
, which will filter-out any matched tag from syncing.Describe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: