Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/go_modules/all-618a91c0c6
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchnielsen authored Nov 18, 2024
2 parents ba7df95 + 4610b7c commit 38a4cad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ SHELL = /usr/bin/env bash -o pipefail
help: ## Display this help.
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m<target>\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)

.PHONY: clean
clean: ## Clean up the project directory.
@$(ENVTEST) cleanup $(ENVTEST_K8S_VERSION) --bin-dir $(LOCALBIN)
@rm -rf $(LOCALBIN)

##@ Development

.PHONY: manifests
Expand Down Expand Up @@ -183,8 +188,6 @@ deploy: helmbuild ## Install CRDs & the Helm Chart to the K8s cluster specified
undeploy: ## Uninstall the Helm Chart to the K8s cluster specified in ~/.kube/config.
helm uninstall $(RELEASE_NAME) --namespace $(NAMESPACE)

##@ Dependencies

## Location to install dependencies to
LOCALBIN ?= $(shell pwd)/bin
$(LOCALBIN):
Expand Down

0 comments on commit 38a4cad

Please sign in to comment.