From 8d960eb0251bfeddc143ca454cdd55bcb6c0aeec Mon Sep 17 00:00:00 2001 From: Gianluca Mardente Date: Wed, 10 Jun 2026 18:02:36 +0200 Subject: [PATCH] (chore) Fix kubectl latest version --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4b4e7dbd..1670e636 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ endif OS ?= $(shell uname -s) OS := $(shell echo $(OS) | tr '[:upper:]' '[:lower:]') -K8S_LATEST_VER ?= $(shell curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt) +K8S_LATEST_VER ?= $(shell curl -s https://dl.k8s.io/release/stable.txt) export CONTROLLER_IMG ?= $(REGISTRY)/$(IMAGE_NAME) TAG ?= v1.11.0 @@ -146,7 +146,7 @@ $(CLUSTERCTL): $(TOOLS_DIR)/go.mod ## Build clusterctl binary chmod +x $@ $(KUBECTL): - curl -L https://storage.googleapis.com/kubernetes-release/release/$(K8S_LATEST_VER)/bin/$(OS)/$(ARCH)/kubectl -o $@ + curl -L https://dl.k8s.io/release/$(K8S_LATEST_VER)/bin/$(OS)/$(ARCH)/kubectl -o $@ chmod +x $@ .PHONY: tools