.PHONY: lint lint: ## Lint the helm chart helm lint helm .PHONY: deploy deploy: ## Deploy the helm chart on a running cluster helm upgrade --install mushroom ./helm .PHONY: help help: ## Show this help @echo Noteworthy targets: @egrep '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}' .DEFAULT_GOAL := help