feat: add helm/**

This commit is contained in:
Sun-ZhenXing
2025-09-18 11:31:01 +08:00
parent 177d797ad2
commit a42e3a2954
17 changed files with 756 additions and 7 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: i dev prod build clean update
.PHONY: i dev prod build clean update docker-build docker-run helm-install helm-upgrade helm-uninstall helm-lint
i:
uv sync --all-extras --all-packages $(filter-out i,$(MAKECMDGOALS))
@@ -18,5 +18,30 @@ clean:
update:
uv sync --all-extras --all-packages -U $(filter-out update,$(MAKECMDGOALS))
docker-build:
docker compose build $(filter-out docker-build,$(MAKECMDGOALS))
docker-run:
docker compose up -d $(filter-out docker-run,$(MAKECMDGOALS))
# Helm deployment commands
helm-lint:
helm lint helm/mcp-template-python
helm-install:
helm install mcp-template-python helm/mcp-template-python
helm-upgrade:
helm upgrade mcp-template-python helm/mcp-template-python
helm-install-prod:
helm install mcp-template-python helm/mcp-template-python -f values-production.yaml
helm-upgrade-prod:
helm upgrade mcp-template-python helm/mcp-template-python -f values-production.yaml
helm-uninstall:
helm uninstall mcp-template-python
%:
@: