Implement Makefile for deployment
This commit is contained in:
parent
4cd13b7acf
commit
c1ccd73764
|
@ -0,0 +1,9 @@
|
||||||
|
FOLDERS := infra/traefik infra/storage infra/monitoring infra/authelia apps/namesny-com apps/mlflow apps/gitea apps/code-server
|
||||||
|
|
||||||
|
all: $(FOLDERS)
|
||||||
|
|
||||||
|
$(FOLDERS):
|
||||||
|
@echo "Deploying $@..."
|
||||||
|
cd $(CURDIR)/$@ && kustomize build --enable-helm --enable-alpha-plugins --enable-exec . | kubectl apply -f -
|
||||||
|
|
||||||
|
.PHONY: deploy $(FOLDERS)
|
Loading…
Reference in New Issue