Skip to content

Commit be5819b

Browse files
committed
[Makefile] Fix make install-crds
1 parent cf9584e commit be5819b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ default: build-all
3535

3636
.PHONY: install-crds
3737
install-crds: generate ## Install CRDs into the K8s cluster specified in ~/.kube/config.
38-
kubectl apply -f config/crd/*.yaml
38+
kubectl apply -f "charts/openstack-hypervisor-operator/crds/*.yaml"
3939

4040
install-goimports: FORCE
4141
@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

Makefile.maker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ reuse:
7373
verbatim: |
7474
.PHONY: install-crds
7575
install-crds: generate ## Install CRDs into the K8s cluster specified in ~/.kube/config.
76-
kubectl apply -f config/crd/*.yaml
76+
kubectl apply -f "charts/openstack-hypervisor-operator/crds/*.yaml"

0 commit comments

Comments
 (0)