From a430577fb1e7dff97b473be6286d000891f15972 Mon Sep 17 00:00:00 2001 From: minikube-bot Date: Sat, 6 Dec 2025 08:09:06 +0000 Subject: [PATCH 1/3] Kicbase/ISO: Update cni-plugins from v1.8.0 to v1.8.0 --- .github/workflows/functional_test.yml | 2 +- deploy/kicbase/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/functional_test.yml b/.github/workflows/functional_test.yml index acc63e85cfdc..ae7f811582db 100644 --- a/.github/workflows/functional_test.yml +++ b/.github/workflows/functional_test.yml @@ -305,7 +305,7 @@ jobs: shell: bash if: matrix.driver == 'none' run: | - CNI_PLUGIN_VERSION="v1.7.1" + CNI_PLUGIN_VERSION="v1.8.0" CNI_PLUGIN_TAR="cni-plugins-linux-amd64-$CNI_PLUGIN_VERSION.tgz" CNI_PLUGIN_INSTALL_DIR="/opt/cni/bin" curl -LO "https://github.com/containernetworking/plugins/releases/download/$CNI_PLUGIN_VERSION/$CNI_PLUGIN_TAR" diff --git a/deploy/kicbase/Dockerfile b/deploy/kicbase/Dockerfile index 7390bef59a06..18cddf10b99d 100644 --- a/deploy/kicbase/Dockerfile +++ b/deploy/kicbase/Dockerfile @@ -46,7 +46,7 @@ ARG CRIO_VERSION="v1.34" ARG CRICTL_VERSION="v1.34.0" ARG CRI_DOCKERD_VERSION="v0.4.1" ARG CRI_DOCKERD_COMMIT="55d6e1a1d6f2ee58949e13a0c66afe7d779ac942" -ARG CNI_PLUGINS_VERSION="v1.4.0" +ARG CNI_PLUGINS_VERSION="v1.8.0" ARG TARGETARCH ARG NERDCTL_VERSION="1.7.7" ARG NERDCTLD_VERSION="0.7.0" From 23d4a2c3b84e7fef963a70dec4270d4f16a58830 Mon Sep 17 00:00:00 2001 From: minikube-bot Date: Sat, 6 Dec 2025 08:55:04 +0000 Subject: [PATCH 2/3] Updating kicbase image to v0.0.48-1765010225-22052 --- pkg/drivers/kic/types.go | 4 ++-- site/content/en/docs/commands/start.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/drivers/kic/types.go b/pkg/drivers/kic/types.go index 81237ea2f8c4..6a1971ac474e 100644 --- a/pkg/drivers/kic/types.go +++ b/pkg/drivers/kic/types.go @@ -24,10 +24,10 @@ import ( const ( // Version is the current version of kic - Version = "v0.0.48-1764843390-22032" + Version = "v0.0.48-1765010225-22052" // SHA of the kic base image - baseImageSHA = "e0549ab5b944401a6b1b03cfbd02cd8e1f1ac2f1cf44298eab0c6846e4375164" + baseImageSHA = "f8293ffaf01c2479ed1c3619d377af6729e44b45e7b4489d6b4101d54622539a" // The name of the GCR kicbase repository gcrRepo = "gcr.io/k8s-minikube/kicbase-builds" // The name of the Dockerhub kicbase repository diff --git a/site/content/en/docs/commands/start.md b/site/content/en/docs/commands/start.md index 1e3a3c76c939..c9c72c22c161 100644 --- a/site/content/en/docs/commands/start.md +++ b/site/content/en/docs/commands/start.md @@ -27,7 +27,7 @@ minikube start [flags] --apiserver-port int The apiserver listening port (default 8443) --auto-pause-interval duration Duration of inactivity before the minikube VM is paused (default 1m0s) (default 1m0s) --auto-update-drivers If set, automatically updates drivers to the latest version. Defaults to true. (default true) - --base-image string The base image to use for docker/podman drivers. Intended for local development. (default "gcr.io/k8s-minikube/kicbase-builds:v0.0.48-1764843390-22032@sha256:e0549ab5b944401a6b1b03cfbd02cd8e1f1ac2f1cf44298eab0c6846e4375164") + --base-image string The base image to use for docker/podman drivers. Intended for local development. (default "gcr.io/k8s-minikube/kicbase-builds:v0.0.48-1765010225-22052@sha256:f8293ffaf01c2479ed1c3619d377af6729e44b45e7b4489d6b4101d54622539a") --binary-mirror string Location to fetch kubectl, kubelet, & kubeadm binaries from. --cache-images If true, cache docker images for the current bootstrapper and load them into the machine. Always false with --driver=none. (default true) --cert-expiration duration Duration until minikube certificate expiration, defaults to three years (26280h). (default 26280h0m0s) From 1b05705d524596331c012de9ae5a60b201d43bd9 Mon Sep 17 00:00:00 2001 From: minikube-bot Date: Sat, 6 Dec 2025 18:15:23 +0000 Subject: [PATCH 3/3] Updating ISO to v1.37.0-1765032734-22052 --- Makefile | 2 +- pkg/minikube/download/iso.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7e28febca7ee..9778bb7ab69a 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-1764843329-22032 +ISO_VERSION ?= v1.37.0-1765032734-22052 # 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 17eb218163fe..c4f298d7775a 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/22032" + isoBucket := "minikube-builds/iso/22052" return []string{ fmt.Sprintf("https://storage.googleapis.com/%s/minikube-%s-%s.iso", isoBucket, v, runtime.GOARCH),