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