From 9cbf21173f611e59db7ef5c5c4872870ad152523 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Mon, 25 May 2026 21:17:10 +0000 Subject: [PATCH] fix(data-service): probe /health/ready instead of /health --- .../customer1/trading-platform/data-service/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/base/customer1/trading-platform/data-service/deployment.yaml b/apps/base/customer1/trading-platform/data-service/deployment.yaml index fa90442..20d92bb 100644 --- a/apps/base/customer1/trading-platform/data-service/deployment.yaml +++ b/apps/base/customer1/trading-platform/data-service/deployment.yaml @@ -62,7 +62,7 @@ spec: key: password startupProbe: httpGet: - path: /health + path: /health/ready port: 8001 initialDelaySeconds: 15 periodSeconds: 10 @@ -75,7 +75,7 @@ spec: periodSeconds: 30 readinessProbe: httpGet: - path: /health + path: /health/ready port: 8001 initialDelaySeconds: 5 periodSeconds: 10