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:
parent
c9e5e5b651
commit
9ca32408b1
2 changed files with 2 additions and 2 deletions
|
|
@ -78,7 +78,7 @@ spec:
|
|||
periodSeconds: 30
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
path: /health/ready
|
||||
port: 8002
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 10
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ spec:
|
|||
failureThreshold: 3
|
||||
readinessProbe:
|
||||
httpGet:
|
||||
path: /health
|
||||
path: /health/ready
|
||||
port: http
|
||||
initialDelaySeconds: 10
|
||||
periodSeconds: 5
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue