diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..a032ee5 --- /dev/null +++ b/Makefile @@ -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)