fix(trading-platform): increase startupProbe failureThreshold to 30 for data-service and dashboard
Gives ~5min grace period for heavy lifespan init (Redis, DB, executors, model loading). Addresses 'up but not ready' state on data-service and dashboard (0/1 Ready). Live manifests in apps/base/customer1/... updated (source of truth). Helm templates can be synced later. See gke-hermes-infrastructure skill (trading-startup-probe-fix-2026-05-26.md).
This commit is contained in:
parent
9ca32408b1
commit
a07259cd25
2 changed files with 4 additions and 4 deletions
|
|
@ -63,8 +63,8 @@ spec:
|
||||||
path: /api/health
|
path: /api/health
|
||||||
port: 8000
|
port: 8000
|
||||||
initialDelaySeconds: 15
|
initialDelaySeconds: 15
|
||||||
periodSeconds: 5
|
periodSeconds: 10
|
||||||
failureThreshold: 6
|
failureThreshold: 30
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /api/health
|
path: /api/health
|
||||||
|
|
|
||||||
|
|
@ -65,8 +65,8 @@ spec:
|
||||||
path: /health
|
path: /health
|
||||||
port: 8001
|
port: 8001
|
||||||
initialDelaySeconds: 15
|
initialDelaySeconds: 15
|
||||||
periodSeconds: 5
|
periodSeconds: 10
|
||||||
failureThreshold: 6
|
failureThreshold: 30
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
httpGet:
|
httpGet:
|
||||||
path: /health
|
path: /health
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue