From 751b36588b5e75fe223cd5decdade1ce5f19a88f Mon Sep 17 00:00:00 2001 From: Vidit Tripathi Date: Thu, 27 Nov 2025 08:13:57 +0530 Subject: [PATCH 1/2] Upgrade Buildroot to 2025.02.8 LTS for GCC 13+ compatibility --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 34fac0c9ee93..f33a251f48ea 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ export GOTOOLCHAIN := go$(GO_VERSION) GO_K8S_VERSION_PREFIX ?= v1.35.0 INSTALL_SIZE ?= $(shell du out/minikube-windows-amd64.exe | cut -f1) -BUILDROOT_BRANCH ?= 2025.02 +BUILDROOT_BRANCH ?= 2025.02.9 GOLANG_OPTIONS = GOWORK=off GO_VERSION=$(GO_VERSION) GO_HASH_FILE=$(PWD)/deploy/iso/minikube-iso/go.hash BUILDROOT_OPTIONS = BR2_EXTERNAL=../../deploy/iso/minikube-iso $(GOLANG_OPTIONS) REGISTRY ?= gcr.io/k8s-minikube From 035679b36ee088e247d8ee3b13d6a501cde71dfa Mon Sep 17 00:00:00 2001 From: minikube-bot Date: Mon, 15 Dec 2025 22:04:14 +0000 Subject: [PATCH 2/2] Updating ISO to v1.37.0-1765822282-21997 --- Makefile | 2 +- pkg/minikube/download/iso.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f33a251f48ea..df4761c4fc2b 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ KIC_VERSION ?= $(shell grep -E "Version =" pkg/drivers/kic/types.go | cut -d \" HUGO_VERSION ?= $(shell grep -E "HUGO_VERSION = \"" netlify.toml | cut -d \" -f2) # Default to .0 for higher cache hit rates, as build increments typically don't require new ISO versions -ISO_VERSION ?= v1.37.0-1765579389-22117 +ISO_VERSION ?= v1.37.0-1765822282-21997 # Dashes are valid in semver, but not Linux packaging. Use ~ to delimit alpha/beta DEB_VERSION ?= $(subst -,~,$(RAW_VERSION)) diff --git a/pkg/minikube/download/iso.go b/pkg/minikube/download/iso.go index 0f5a5f4ed67e..89345fdec807 100644 --- a/pkg/minikube/download/iso.go +++ b/pkg/minikube/download/iso.go @@ -41,7 +41,7 @@ const fileScheme = "file" // DefaultISOURLs returns a list of ISO URL's to consult by default, in priority order func DefaultISOURLs() []string { v := version.GetISOVersion() - isoBucket := "minikube-builds/iso/22117" + isoBucket := "minikube-builds/iso/21997" return []string{ fmt.Sprintf("https://storage.googleapis.com/%s/minikube-%s-%s.iso", isoBucket, v, runtime.GOARCH),