From 9f59990c7d830ad4fdb5108e6aad685fed415d8a Mon Sep 17 00:00:00 2001 From: Moritz Sanft <58110325+msanft@users.noreply.github.com> Date: Tue, 14 Jan 2025 11:41:04 +0100 Subject: [PATCH] renovate: match dl.k8s.io for K8s releases (#3573) We have a version mismatch in our Kubernetes (e.g. `kubadm`) versions and the versions the CLI expects to have right now, as the Renovate rule didn't match the `dl.k8s.io` URLs introduced in https://github.com/edgelesssys/constellation/commit/c1714aaf92ed04f6795bf52002256a9cb4fdba76. This fixes the issue by adjusting the Regex. Updates should work again when the versions are back in sync. --- renovate.json5 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renovate.json5 b/renovate.json5 index 5d37ae297..2ff365329 100644 --- a/renovate.json5 +++ b/renovate.json5 @@ -235,9 +235,9 @@ "fileMatch": ["(^|\\/)versions.go$"], "matchStrings": [ // Match kubernetes releases. - // example match:' "https://storage.googleapis.com/kubernetes-release/release/v1.2.3/foo" // renovate:kubernetes-release' + // example match:' "https://dl.k8s.io/v1.2.3/foo" // renovate:kubernetes-release' // (v1.2.3 -> currentValue) - " \"https:\\/\\/storage\\.googleapis\\.com\\/kubernetes-release\\/release\\/(?[^\\/\\s\"]+)\\/[^\"]+\"[^\\n]+\\/\\/ renovate:kubernetes-release", + " \"https:\\/\\/dl\\.k8s\\.io\\/(?[^\\/\\s\"]+)\\/[^\"]+\"[^\\n]+\\/\\/ renovate:kubernetes-release", // Match kubernetes releases. // example match:' " "v1.2.3" // renovate:kubernetes-release"' // (v1.2.3 -> currentValue)