Skip to content

Commit

Permalink
Fix 'make (un)install' commands (#96)
Browse files Browse the repository at this point in the history
The wildcard in the 'make (un)install' commands was causing an error
locally. At least on my system and shell (zsh), adding the single quotes
around the file path fixes it.

Related to https://linear.app/prefect/issue/PLA-289/cycle-2-catch-all
  • Loading branch information
mitchnielsen authored Sep 25, 2024
1 parent 6c87459 commit 5f3d8b6
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 @@ -163,11 +163,11 @@ endif

.PHONY: install
install: manifests tools ## Install CRDs into the K8s cluster specified in ~/.kube/config.
$(KUBECTL) apply -f deploy/charts/prefect-operator/crds/*.yaml
$(KUBECTL) apply -f 'deploy/charts/prefect-operator/crds/*.yaml'

.PHONY: uninstall
uninstall: manifests tools ## Uninstall CRDs from the K8s cluster specified in ~/.kube/config. Call with ignore-not-found=true to ignore resource not found errors during deletion.
$(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f deploy/charts/prefect-operator/crds/*.yaml
$(KUBECTL) delete --ignore-not-found=$(ignore-not-found) -f 'deploy/charts/prefect-operator/crds/*.yaml'

.PHONY: deploy
deploy: helmbuild ## Install CRDs & the Helm Chart to the K8s cluster specified in ~/.kube/config.
Expand Down

0 comments on commit 5f3d8b6

Please sign in to comment.