With basic config to have TLS certs with ACME. It works! TODO: - gitea - bar-jupyter
14 lines
414 B
Makefile
14 lines
414 B
Makefile
.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
|