From 3b1b3e74ad8522c2facb4220c2b15f36a3470a8e Mon Sep 17 00:00:00 2001 From: Benjamin Schimke Date: Tue, 10 Dec 2024 15:23:00 +0100 Subject: [PATCH] init 1.32 release (#877) --- build-scripts/components/kubernetes/version | 2 +- build-scripts/hack/generate-sbom.py | 6 +++--- build-scripts/hack/update-component-versions.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build-scripts/components/kubernetes/version b/build-scripts/components/kubernetes/version index c46737494..1bfb2727a 100644 --- a/build-scripts/components/kubernetes/version +++ b/build-scripts/components/kubernetes/version @@ -1 +1 @@ -v1.31.3 +v1.32.0-rc.2 diff --git a/build-scripts/hack/generate-sbom.py b/build-scripts/hack/generate-sbom.py index e9429c615..0186342c0 100755 --- a/build-scripts/hack/generate-sbom.py +++ b/build-scripts/hack/generate-sbom.py @@ -29,13 +29,13 @@ # FIXME: This information should not be hardcoded here CILIUM_ROCK_REPO = "https://github.com/canonical/cilium-rocks" -CILIUM_ROCK_TAG = "main" +CILIUM_ROCK_TAG = "release-1.32" CILIUM_VERSION = "1.16.3" COREDNS_ROCK_REPO = "https://github.com/canonical/coredns-rock" -COREDNS_ROCK_TAG = "main" +COREDNS_ROCK_TAG = "release-1.32" COREDNS_VERSION = "1.11.3" METRICS_SERVER_ROCK_REPO = "https://github.com/canonical/metrics-server-rock" -METRICS_SERVER_ROCK_TAG = "main" +METRICS_SERVER_ROCK_TAG = "release-1.32" METRICS_SERVER_VERSION = "0.7.2" RAWFILE_LOCALPV_REPO = "https://github.com/canonical/rawfile-localpv" RAWFILE_LOCALPV_TAG = "main" diff --git a/build-scripts/hack/update-component-versions.py b/build-scripts/hack/update-component-versions.py index 148cd8da9..998f224e1 100755 --- a/build-scripts/hack/update-component-versions.py +++ b/build-scripts/hack/update-component-versions.py @@ -34,7 +34,7 @@ # - "https://dl.k8s.io/release/stable.txt" # - "https://dl.k8s.io/release/stable-1.xx.txt" # - "https://dl.k8s.io/release/latest-1.xx.txt" (e.g. for release candidate builds) -KUBERNETES_VERSION_MARKER = "https://dl.k8s.io/release/stable.txt" +KUBERNETES_VERSION_MARKER = "https://dl.k8s.io/release/latest-1.32.txt" # Containerd release branch to track. The most recent tag in the branch will be used. CONTAINERD_RELEASE_BRANCH = "release/1.6"