Fix: readiness probe for execute-service uses /health/ready

Change readiness probe from /health (always ok) to /health/ready
(checks executor initialization state). Applied to both:
- apps/base K8s deployment
- Helm chart template

Pairs with app fix making executor init non-blocking.
This commit is contained in:
Sirius Devops 2026-05-25 05:39:24 +00:00
parent c9e5e5b651
commit 9ca32408b1
2 changed files with 2 additions and 2 deletions

View file

@ -78,7 +78,7 @@ spec:
periodSeconds: 30 periodSeconds: 30
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /health/ready
port: 8002 port: 8002
initialDelaySeconds: 5 initialDelaySeconds: 5
periodSeconds: 10 periodSeconds: 10

View file

@ -79,7 +79,7 @@ spec:
failureThreshold: 3 failureThreshold: 3
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /health/ready
port: http port: http
initialDelaySeconds: 10 initialDelaySeconds: 10
periodSeconds: 5 periodSeconds: 5