From 0ae51d5e0bc7f8bad0da0480dd43025068741d1b Mon Sep 17 00:00:00 2001 From: kerthcet Date: Sat, 2 Mar 2024 11:41:21 +0800 Subject: [PATCH] Fix make manifest error Signed-off-by: kerthcet --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 656a2241..90c165fe 100644 --- a/Makefile +++ b/Makefile @@ -50,10 +50,10 @@ help: ## Display this help. .PHONY: manifests manifests: controller-gen ## Generate WebhookConfiguration, ClusterRole and CustomResourceDefinition objects. $(CONTROLLER_GEN) \ - rbac:roleName=manager-role output:rbac:artifacts:config=config/rbac\ - crd:generateEmbeddedObjectMeta=true output:crd:artifacts:config=config/crd/bases\ - webhook output:webhook:artifacts:config=config/webhook\ - paths="./..." + rbac:roleName=manager-role output:rbac:artifacts:config=config/rbac \ + crd:generateEmbeddedObjectMeta=true output:crd:artifacts:config=config/crd/bases \ + webhook output:webhook:artifacts:config=config/webhook \ + paths="./..." .PHONY: generate generate: controller-gen code-generator ## Generate code containing DeepCopy, DeepCopyInto, and DeepCopyObject method implementations and client-go libraries. @@ -164,7 +164,7 @@ ENVTEST ?= $(LOCALBIN)/setup-envtest ## Tool Versions KUSTOMIZE_VERSION ?= v5.2.1 -CONTROLLER_TOOLS_VERSION ?= v0.13.0 +CONTROLLER_TOOLS_VERSION ?= v0.14.0 .PHONY: kustomize kustomize: $(KUSTOMIZE) ## Download kustomize locally if necessary. If wrong version is installed, it will be removed before downloading.