From 64840ff5cff16619e0ed66b19d4dabc2e1536be6 Mon Sep 17 00:00:00 2001 From: Viktor Ishchenko Date: Wed, 16 Sep 2026 14:43:12 +0200 Subject: [PATCH 1/2] mirror the alpine builds of google/cloud-sdk --- regsync-config.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/regsync-config.yaml b/regsync-config.yaml index 08e01d5..1ae59c8 100644 --- a/regsync-config.yaml +++ b/regsync-config.yaml @@ -727,6 +727,14 @@ sync: allow: - '[0-9]+\.[0-9]+\.[0-9]+' + # gcloud for the meshcentral pre-delete hook. no semverRange: -alpine is a prerelease and sorts below the bare tag + - source: docker.io/google/cloud-sdk + target: ${TARGET_REGISTRY}/google/cloud-sdk + type: repository + tags: + allow: + - '(58[5-9]|59[0-9]|[6-9][0-9][0-9]|[0-9]{4,})\.[0-9]+\.[0-9]+-alpine' + # ============================================================================= # HELM CHARTS # ============================================================================= From 81b6512a1f9e2452d928787a4f0e72e5d18272cd Mon Sep 17 00:00:00 2001 From: Viktor Ishchenko Date: Wed, 16 Sep 2026 14:54:28 +0200 Subject: [PATCH 2/2] set a prerelease-aware version floor and list cloud-sdk under utilities --- regsync-config.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/regsync-config.yaml b/regsync-config.yaml index 1ae59c8..1de0319 100644 --- a/regsync-config.yaml +++ b/regsync-config.yaml @@ -705,7 +705,7 @@ sync: # --------------------------------------------------------------------------- # Utilities # General-purpose base images and helper containers - # Includes: BusyBox, curl + # Includes: BusyBox, curl, Google Cloud SDK # --------------------------------------------------------------------------- - source: docker.io/library/busybox @@ -727,13 +727,15 @@ sync: allow: - '[0-9]+\.[0-9]+\.[0-9]+' - # gcloud for the meshcentral pre-delete hook. no semverRange: -alpine is a prerelease and sorts below the bare tag + # gcloud for the meshcentral pre-delete hook. the floor carries -alpine because a prerelease sorts below the bare tag - source: docker.io/google/cloud-sdk target: ${TARGET_REGISTRY}/google/cloud-sdk type: repository tags: + semverRange: + - ">=585.0.0-alpine" allow: - - '(58[5-9]|59[0-9]|[6-9][0-9][0-9]|[0-9]{4,})\.[0-9]+\.[0-9]+-alpine' + - '[0-9]+\.[0-9]+\.[0-9]+-alpine' # ============================================================================= # HELM CHARTS