2024-04-25 19:55:49 +00:00
|
|
|
FOLDERS := infra/traefik infra/storage infra/monitoring infra/authelia apps/namesny-com apps/mlflow apps/gitea apps/code-server apps/dev-container
|
2024-03-24 17:54:51 +00:00
|
|
|
|
|
|
|
all: $(FOLDERS)
|
|
|
|
|
|
|
|
$(FOLDERS):
|
|
|
|
@echo "Deploying $@..."
|
|
|
|
cd $(CURDIR)/$@ && kustomize build --enable-helm --enable-alpha-plugins --enable-exec . | kubectl apply -f -
|
|
|
|
|
|
|
|
.PHONY: deploy $(FOLDERS)
|