Files
cloud-config/mushroom/Makefile
Paul Mathieu 0cf7c9b908 Initial commit: mushroom, zetikettes
With basic config to have TLS certs with ACME.
It works!

TODO:
- gitea
- bar-jupyter
2026-03-02 06:48:46 +00:00

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