From b6a273432ceacd0a583cb3b66d15a6287df682b2 Mon Sep 17 00:00:00 2001 From: Artem Tiupin Date: Thu, 16 Mar 2023 16:43:26 +0000 Subject: [PATCH] [makefile] bump kind version to v0.17.0 Signed-off-by: Artem Tiupin --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 46830846c..e214bb681 100644 --- a/Makefile +++ b/Makefile @@ -169,8 +169,9 @@ $(OPM): opm: $(OPM) ## Download opm locally if necessary. KIND = $(PROJECT_PATH)/bin/kind +KIND_VERSION = v0.17.0 $(KIND): - $(call go-install-tool,$(KIND),sigs.k8s.io/kind@v0.11.1) + $(call go-install-tool,$(KIND),sigs.k8s.io/kind@v$(KIND_VERSION)) .PHONY: kind kind: $(KIND) ## Download kind locally if necessary.