Skip to content

Commit

Permalink
fix make install and make uninstall
Browse files Browse the repository at this point in the history
Signed-off-by: shenwei <[email protected]>
  • Loading branch information
shenwei committed Jun 17, 2024
1 parent 11b0bca commit 122daf0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,11 @@ run-test-mode: generate lint manifests ## Run against the configured Kubernetes

.PHONY: install
install: $(KUSTOMIZE) manifests ## Install CRDs into a cluster
$< build config/crd | kubectl apply -f -
$< build config/base/crds | kubectl apply -f -

.PHONY: uninstall
uninstall: $(KUSTOMIZE) manifests ## Uninstall CRDs from a cluster
$< build config/crd | kubectl delete -f -
$< build config/base/crds | kubectl delete -f -

.PHONY: deploy
deploy: $(KUSTOMIZE) manifests ## Deploy controller in the configured Kubernetes cluster in ~/.kube/config
Expand Down

0 comments on commit 122daf0

Please sign in to comment.