From edd55d983bb245542ed57250a4541284b0dd1f9d Mon Sep 17 00:00:00 2001 From: Andrew Karpow Date: Thu, 19 Mar 2026 15:13:39 -0400 Subject: [PATCH] [Makefile] Fix make install-crds --- Makefile | 2 +- Makefile.maker.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index e4fa235..e8d20a6 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ default: build-all .PHONY: install-crds install-crds: generate ## Install CRDs into the K8s cluster specified in ~/.kube/config. - kubectl apply -f config/crd/*.yaml + kubectl apply -f "charts/openstack-hypervisor-operator/crds/*.yaml" install-goimports: FORCE @if ! hash goimports 2>/dev/null; then printf "\e[1;36m>> Installing goimports (this may take a while)...\e[0m\n"; go install golang.org/x/tools/cmd/goimports@latest; fi diff --git a/Makefile.maker.yaml b/Makefile.maker.yaml index dff6a12..63b49cc 100644 --- a/Makefile.maker.yaml +++ b/Makefile.maker.yaml @@ -73,4 +73,4 @@ reuse: verbatim: | .PHONY: install-crds install-crds: generate ## Install CRDs into the K8s cluster specified in ~/.kube/config. - kubectl apply -f config/crd/*.yaml + kubectl apply -f "charts/openstack-hypervisor-operator/crds/*.yaml"