From 29245e7d6c70617ac9639210628be61ed5f0a0ca Mon Sep 17 00:00:00 2001 From: champon1020 Date: Wed, 13 Mar 2024 01:17:45 +0900 Subject: [PATCH] fix: upgrade controller-gen to v0.14.0 Signed-off-by: champon1020 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 3b6ac38a51..90dd48e34e 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ PROJECT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST)))) CONTROLLER_GEN = $(shell pwd)/bin/controller-gen controller-gen: ## Download controller-gen locally if necessary. - GOBIN=$(PROJECT_DIR)/bin go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.13.0 + GOBIN=$(PROJECT_DIR)/bin go install sigs.k8s.io/controller-tools/cmd/controller-gen@v0.14.0 KUSTOMIZE = $(shell pwd)/bin/kustomize kustomize: ## Download kustomize locally if necessary.