fix(bi): bi-backend слушает :8000, не :80
Приложение (gunicorn/uvicorn) биндится на 0.0.0.0:8000. Service targetPort и containerPort были 80 -> istio -> svc:80 -> pod:80 (никто не слушает) -> 503. targetPort и deployment.port -> 8000, service.port остаётся 80 (в него бьёт VS). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
parent
0c7f1f63e9
commit
0cfb386c90
@ -56,7 +56,7 @@ spec:
|
|||||||
_default: 1
|
_default: 1
|
||||||
|
|
||||||
port:
|
port:
|
||||||
_default: 80
|
_default: 8000
|
||||||
|
|
||||||
command:
|
command:
|
||||||
_default: ["/bin/sh", "-ec"]
|
_default: ["/bin/sh", "-ec"]
|
||||||
@ -95,7 +95,7 @@ spec:
|
|||||||
_default: 80
|
_default: 80
|
||||||
|
|
||||||
targetPort:
|
targetPort:
|
||||||
_default: 80
|
_default: 8000
|
||||||
|
|
||||||
portName:
|
portName:
|
||||||
_default: http
|
_default: http
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user