From c2f500a082be0ac22fb1cd7144a4e59dd86cdd92 Mon Sep 17 00:00:00 2001 From: shuqz Date: Wed, 12 Nov 2025 12:10:42 -0800 Subject: [PATCH 1/2] update to use controller-gen v0.19.0 --- Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile b/Makefile index 2d415e1d9..22ae8e098 100644 --- a/Makefile +++ b/Makefile @@ -132,7 +132,6 @@ docker-push-w-buildx: # find or download controller-gen # download controller-gen if necessary controller-gen: -ifeq (, $(shell which controller-gen)) @{ \ set -e ;\ CONTROLLER_GEN_TMP_DIR=$$(mktemp -d) ;\ @@ -142,9 +141,6 @@ ifeq (, $(shell which controller-gen)) rm -rf $$CONTROLLER_GEN_TMP_DIR ;\ } CONTROLLER_GEN=$(GOBIN)/controller-gen -else -CONTROLLER_GEN=$(shell which controller-gen) -endif # find or download mockgen # download mockgen if necessary From 3016fcac7152e2b7c4c23040e34c379efb592e09 Mon Sep 17 00:00:00 2001 From: shuqz Date: Wed, 12 Nov 2025 12:14:52 -0800 Subject: [PATCH 2/2] update description --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 22ae8e098..4cd735830 100644 --- a/Makefile +++ b/Makefile @@ -129,8 +129,7 @@ docker-push-w-buildx: --push \ --platform ${IMG_PLATFORM} -# find or download controller-gen -# download controller-gen if necessary +# download controller-gen v0.19.0 controller-gen: @{ \ set -e ;\