From f0841be093de9d1411776e039d9c55614a681867 Mon Sep 17 00:00:00 2001 From: Tarun Pothulapati Date: Fri, 30 Aug 2024 16:05:03 +0530 Subject: [PATCH] also update paths --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7034e16..bd6a283 100644 --- a/Makefile +++ b/Makefile @@ -116,8 +116,8 @@ install: manifests kustomize ## Install CRDs into the K8s cluster specified in ~ .PHONY: generate-manifests generate-manifests: manifests kustomize ## Generate manifests e.g. CRD, RBAC etc. mkdir -p manifests - $(KUSTOMIZE) build config/default > manifests/dragonfly-operator.yaml - $(KUSTOMIZE) build config/crd > manifests/crd.yaml + $(KUSTOMIZE) build config/default > manifests/operator/dragonfly-operator.yaml + $(KUSTOMIZE) build config/crd > manifests/crds/crd.yaml .PHONY: uninstall uninstall: manifests kustomize ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.