From 656437bc6f508d754cd6087a9cae330ba9029f50 Mon Sep 17 00:00:00 2001 From: Adam Dyess Date: Fri, 13 Sep 2024 18:33:57 -0500 Subject: [PATCH] Release 1.31 (#667) --- build-scripts/hack/generate-sbom.py | 8 ++++---- build-scripts/hack/update-component-versions.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build-scripts/hack/generate-sbom.py b/build-scripts/hack/generate-sbom.py index 3303a23d4a..94b550c040 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.31" COREDNS_ROCK_REPO = "https://github.com/canonical/coredns-rock" -COREDNS_ROCK_TAG = "main" +COREDNS_ROCK_TAG = "release-1.31" METRICS_SERVER_ROCK_REPO = "https://github.com/canonical/metrics-server-rock" -METRICS_SERVER_ROCK_TAG = "main" +METRICS_SERVER_ROCK_TAG = "release-1.31" RAWFILE_LOCALPV_REPO = "https://github.com/canonical/rawfile-localpv" -RAWFILE_LOCALPV_TAG = "main" +RAWFILE_LOCALPV_TAG = "release-1.31" SNAPCRAFT_C_COMPONENTS = ["libmnl", "libnftnl", "iptables"] SNAPCRAFT_GO_COMPONENTS = [ "runc", diff --git a/build-scripts/hack/update-component-versions.py b/build-scripts/hack/update-component-versions.py index 148cd8da96..e59905bad5 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/stable-1.31.txt" # Containerd release branch to track. The most recent tag in the branch will be used. CONTAINERD_RELEASE_BRANCH = "release/1.6"