Adds complete k8s/ manifest tree: Namespace, VaultAuth + VaultStaticSecret CRDs (VSO secret sync from Vault KV v2), API and UI Deployments and Services, nginx Ingress with cert-manager TLS, MinIO StatefulSet with PVC and init Job, and Alembic init container on the API Deployment for automatic schema migrations. Includes .yamllint.yml config and validate-k8s Makefile target. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
26 lines
763 B
Makefile
26 lines
763 B
Makefile
.PHONY: test-unit test-integration build-prod verify-prod build-ui-prod verify-ui-prod validate-k8s
|
|
|
|
test-unit:
|
|
cd api && python -m pytest tests/unit/ -v
|
|
|
|
test-integration:
|
|
docker compose -f docker-compose.test.yml build api-test
|
|
docker compose -f docker-compose.test.yml run --rm api-test
|
|
|
|
build-prod:
|
|
docker build -f api/Dockerfile.prod api/ -t reactbin-api-prod:latest
|
|
|
|
verify-prod:
|
|
bash api/tests/build/verify_production_image.sh
|
|
|
|
build-ui-prod:
|
|
docker build -f ui/Dockerfile.prod ui/ -t reactbin-ui-prod:latest
|
|
|
|
verify-ui-prod:
|
|
bash ui/tests/build/verify_production_image.sh
|
|
|
|
# Offline: yamllint only. Online (requires kubeconfig): kubectl apply --dry-run=client -f k8s/
|
|
validate-k8s:
|
|
yamllint -d relaxed k8s/
|
|
kubectl apply --dry-run=client -f k8s/
|