- data: CNPG cluster tuning, OpenBao values, OpenSearch deployment fixes, OpenSearch PVC, barman vault secret for S3 backup credentials - storage: SeaweedFS filer updates (s3.json via secret subPath), PVC for filer persistent storage - devtools: Gitea values (SSH service, custom theme), gitea-theme-cm ConfigMap - ory: add kratos-selfservice-urls.yaml for self-service flow URLs - media: LiveKit values updated (TURN config, STUN, resource limits) - vso: kustomization cleanup
26 lines
585 B
Makefile
26 lines
585 B
Makefile
# Sunbeam infrastructure — local dev convenience targets
|
|
|
|
# Install the sunbeam CLI package (editable)
|
|
install:
|
|
pip install -e ../cli/ --break-system-packages
|
|
|
|
# Run all unit tests
|
|
test:
|
|
PYTHONPATH=../cli python3 -m unittest discover -s ../cli/sunbeam/tests -p 'test_*.py' -v
|
|
|
|
# Start Lima VM and deploy full stack
|
|
up:
|
|
bash scripts/local-up.sh
|
|
|
|
# Stop Lima VM (preserves disk)
|
|
down:
|
|
bash scripts/local-down.sh
|
|
|
|
# Regenerate mkcert wildcard cert for current Lima IP
|
|
certs:
|
|
bash scripts/local-certs.sh
|
|
|
|
# Print all service URLs
|
|
urls:
|
|
bash scripts/local-urls.sh
|