From 64cffbf8f427a715ad39fad14590c87af26af25c Mon Sep 17 00:00:00 2001 From: Hyounggyu Choi Date: Mon, 5 Aug 2024 11:15:09 +0200 Subject: [PATCH] tools: Bump controller-gen to v0.15.0 A version of controller-gen is quite old and fails to run with the latest go: ``` panic: runtime error: invalid memory address or nil pointer dereference ``` This commit updates the package to the latest version. Signed-off-by: Hyounggyu Choi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 679cd8ce..cdf14238 100644 --- a/Makefile +++ b/Makefile @@ -208,7 +208,7 @@ OPERATOR_SDK ?= $(LOCALBIN)/operator-sdk ## Tool Versions KUSTOMIZE_VERSION ?= v5.3.0 -CONTROLLER_TOOLS_VERSION ?= v0.9.2 +CONTROLLER_TOOLS_VERSION ?= v0.15.0 OPERATOR_SDK_VERSION ?= v1.30.0 KUSTOMIZE_INSTALL_SCRIPT ?= "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh"