Files
cloud-config/zetikettes/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

16 lines
439 B
Makefile

namespace := zetikettes
.PHONY: deploy
deploy: ## Deploy the service on a running cluster
kubectl -n $(namespace) apply \
-f app.yaml \
-f ingress.yaml \
-f nginx-config.yaml \
-f service.yaml
.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