fix(manifests): tenant-registry port 8080 → 8090 (match dev)
ci / shared (pull_request) Successful in 5s
ci / validate (pull_request) Successful in 2s

Local dev's Keycloak owns :8080 so tenant-registry shipped on :8090.
Bring the prod + stage manifest ports + the cross-service URL in
customer-portal.toml in line so dev↔prod stays consistent. In Orca
each service has its own port-namespace inside its container, so
this is a cosmetic alignment, not a load-bearing change.

Refs: M5.1
This commit is contained in:
2026-05-19 11:45:53 +02:00
parent e3a62c8113
commit a3a1783b6c
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
[[service]] [[service]]
name = "tenant-registry" name = "tenant-registry"
image = "registry.breakpilot.com/tenant-registry:env-stage" image = "registry.breakpilot.com/tenant-registry:env-stage"
port = 8080 port = 8090
depends_on = ["pg-app-stage"] depends_on = ["pg-app-stage"]
[service.placement] [service.placement]
+1 -1
View File
@@ -17,4 +17,4 @@ cpu = 1.0
[service.env] [service.env]
KEYCLOAK_ISSUER = "https://auth.breakpilot.com/realms/breakpilot-prod" KEYCLOAK_ISSUER = "https://auth.breakpilot.com/realms/breakpilot-prod"
TENANT_REGISTRY_URL = "http://tenant-registry:8080" TENANT_REGISTRY_URL = "http://tenant-registry:8090"
+1 -1
View File
@@ -4,7 +4,7 @@
[[service]] [[service]]
name = "tenant-registry" name = "tenant-registry"
image = "registry.breakpilot.com/tenant-registry:placeholder" image = "registry.breakpilot.com/tenant-registry:placeholder"
port = 8080 port = 8090
[service.placement] [service.placement]
node = "vm-control" node = "vm-control"