Changeset 0.11.0 (#62)

This commit is contained in:
2026-02-25 13:29:15 +00:00
parent d2ec55b16d
commit c9d8e9457e
56 changed files with 5664 additions and 91 deletions

View File

@@ -46,15 +46,16 @@ spec:
number: 8080
# Health check → backend
- path: ${BASE_PATH}/health
pathType: Exact
pathType: Prefix
backend:
service:
name: switchboard-be${DEPLOY_SUFFIX}
port:
number: 8080
# WebSocket → backend (traefik handles upgrade automatically)
# WebSocket → backend (must be Prefix, not Exact — Traefik's Exact
# doesn't reliably win over Prefix rules in the same Ingress resource)
- path: ${BASE_PATH}/ws
pathType: Exact
pathType: Prefix
backend:
service:
name: switchboard-be${DEPLOY_SUFFIX}