From 02c68a207206acf622c35543dc8936e6630ad481 Mon Sep 17 00:00:00 2001 From: googs1025 Date: Sat, 1 Jun 2024 20:36:42 +0800 Subject: [PATCH] update makefile kind version to v1.30.0 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6ed56bb2..ba5dd64e 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # ENVTEST_K8S_VERSION refers to the version of kubebuilder assets to be downloaded by envtest binary. -ENVTEST_K8S_VERSION = 1.29 +ENVTEST_K8S_VERSION = 1.30 # Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set) ifeq (,$(shell go env GOBIN)) @@ -49,7 +49,7 @@ INTEGRATION_TARGET ?= ./test/integration/... PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST)))) E2E_TARGET ?= ./test/e2e/... -E2E_KIND_VERSION ?= kindest/node:v1.29.1 +E2E_KIND_VERSION ?= kindest/node:v1.30.0 USE_EXISTING_CLUSTER ?= false # For local testing, we should allow user to use different kind cluster name @@ -256,7 +256,7 @@ ginkgo: ## Download ginkgo locally if necessary. KIND = $(shell pwd)/bin/kind .PHONY: kind kind: - @GOBIN=$(PROJECT_DIR)/bin GO111MODULE=on $(GO_CMD) install sigs.k8s.io/kind@v0.20.0 + @GOBIN=$(PROJECT_DIR)/bin GO111MODULE=on $(GO_CMD) install sigs.k8s.io/kind@v0.23.0 .PHONY: kind-image-build kind-image-build: PLATFORMS=linux/amd64