From ff2e50f54d76f615aaa43eb6b6b94212d1644324 Mon Sep 17 00:00:00 2001 From: Milo Hyson Date: Wed, 5 Jun 2024 09:35:04 -0700 Subject: [PATCH] fix: upgrade controller-tools to v0.15.0 controller-gen crashes on Go 1.22 due to a change in Golang itself. Upgrading to the latest fixes the issue. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f94be255..13a813ea 100644 --- a/Makefile +++ b/Makefile @@ -220,7 +220,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest ## Tool Versions KUSTOMIZE_VERSION ?= v5.2.1 -CONTROLLER_TOOLS_VERSION ?= v0.13.0 +CONTROLLER_TOOLS_VERSION ?= v0.15.0 .PHONY: kustomize kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary. If wrong version is installed, it will be removed before downloading.