fix(bridge): use /state/health for readiness probe
The actcore-state-hub-bridge readiness probe hit /state/summary through the tunnel proxy chain. Cold-cache summary requests and intermittent tunnel stalls routinely exceeded the 5s probe timeout (1584 failures over 17h), leaving the pod 0/1 Ready and breaking hourly/triage sinks. Use /state/health instead — same signal the ops inventory already expects, and completes in ~30ms through the bridge.
This commit is contained in:
parent
e0742d18d7
commit
40fa851ec0
1 changed files with 1 additions and 1 deletions
|
|
@ -630,7 +630,7 @@ spec:
|
|||
ThreadingHTTPServer(("0.0.0.0", 18080), Proxy).serve_forever()
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /state/summary
|
||||
path: /state/health
|
||||
port: http
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 10
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue