From 405612d8aa42a7b978ad10b18d2a504b91fafae0 Mon Sep 17 00:00:00 2001 From: Artiom Diomin Date: Wed, 6 Mar 2024 16:53:42 +0200 Subject: [PATCH] Make default stable == v1.29 (#3073) Signed-off-by: Artiom Diomin --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 921ec0570..cbbf3ac83 100644 --- a/Makefile +++ b/Makefile @@ -37,7 +37,7 @@ export CGO_ENABLED=0 export GOPROXY?=https://proxy.golang.org export GO111MODULE=on export GOFLAGS?=-mod=readonly -trimpath -export DEFAULT_STABLE=$(shell curl -SsL https://dl.k8s.io/release/stable-1.28.txt) +export DEFAULT_STABLE=$(shell curl -SsL https://dl.k8s.io/release/stable-1.29.txt) BUILD_DATE=$(shell if hash gdate 2>/dev/null; then gdate --rfc-3339=seconds | sed 's/ /T/'; else date --rfc-3339=seconds | sed 's/ /T/'; fi) GITCOMMIT=$(shell git log -1 --pretty=format:"%H")