f1c3fd14b9
Unblock local dev: Keycloak owns :8080, so tenant-registry shifts to :8090. Prod is functionally unchanged. Refs: M5.1
21 lines
581 B
TOML
21 lines
581 B
TOML
# tenant-registry stub — full config lands in M4.1.
|
|
# Host: vm-control. Resource budget per INFRASTRUCTURE.md §6 co-tenant notes.
|
|
|
|
[[service]]
|
|
name = "tenant-registry"
|
|
image = "registry.breakpilot.com/tenant-registry:placeholder"
|
|
port = 8090
|
|
|
|
[service.placement]
|
|
node = "vm-control"
|
|
|
|
[service.resources]
|
|
memory = "512Mi"
|
|
cpu = 0.5
|
|
|
|
[service.env]
|
|
DATABASE_URL = "${secrets.TENANT_REGISTRY_DB_URL}"
|
|
KEYCLOAK_ISSUER = "https://auth.breakpilot.com/realms/breakpilot-prod"
|
|
KEYCLOAK_ADMIN_USER = "${secrets.KEYCLOAK_ADMIN_USER}"
|
|
KEYCLOAK_ADMIN_PASS = "${secrets.KEYCLOAK_ADMIN_PASS}"
|