Skip to content
This repository was archived by the owner on Jun 26, 2024. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions make/deploy.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ run: generate fmt vet install
install: manifests kustomize kubectl
$(KUSTOMIZE) build config/crd | $(KUBECTL) apply -f -

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

.PHONY: deploy-cert-manager
Expand Down