From 9ca32408b11831253a044ef10402da1b3c446184 Mon Sep 17 00:00:00 2001 From: Sirius Devops Date: Mon, 25 May 2026 05:39:24 +0000 Subject: [PATCH] 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. --- .../customer1/trading-platform/execute-service/deployment.yaml | 2 +- .../trading-platform/templates/execute-service/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/base/customer1/trading-platform/execute-service/deployment.yaml b/apps/base/customer1/trading-platform/execute-service/deployment.yaml index 232b73f..dffb614 100644 --- a/apps/base/customer1/trading-platform/execute-service/deployment.yaml +++ b/apps/base/customer1/trading-platform/execute-service/deployment.yaml @@ -78,7 +78,7 @@ spec: periodSeconds: 30 readinessProbe: httpGet: - path: /health + path: /health/ready port: 8002 initialDelaySeconds: 5 periodSeconds: 10 diff --git a/trading-platform/helm/trading-platform/templates/execute-service/deployment.yaml b/trading-platform/helm/trading-platform/templates/execute-service/deployment.yaml index fcb5d43..48680d0 100644 --- a/trading-platform/helm/trading-platform/templates/execute-service/deployment.yaml +++ b/trading-platform/helm/trading-platform/templates/execute-service/deployment.yaml @@ -79,7 +79,7 @@ spec: failureThreshold: 3 readinessProbe: httpGet: - path: /health + path: /health/ready port: http initialDelaySeconds: 10 periodSeconds: 5