From e78674a964ce3350d149d2435a682345e1cd7d60 Mon Sep 17 00:00:00 2001 From: sirius0xdev Date: Tue, 26 May 2026 10:54:23 -0900 Subject: [PATCH] Fix data-service port mismatch: container runs on 8000, not 8001 --- .../trading-platform/data-service/deployment.yaml | 8 ++++---- .../customer1/trading-platform/data-service/service.yaml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/base/customer1/trading-platform/data-service/deployment.yaml b/apps/base/customer1/trading-platform/data-service/deployment.yaml index 20d92bb..da5fb0d 100644 --- a/apps/base/customer1/trading-platform/data-service/deployment.yaml +++ b/apps/base/customer1/trading-platform/data-service/deployment.yaml @@ -29,7 +29,7 @@ spec: image: ghcr.io/sirius0xdev/trading-data-service:latest imagePullPolicy: Always ports: - - containerPort: 8001 + - containerPort: 8000 name: http resources: requests: @@ -63,19 +63,19 @@ spec: startupProbe: httpGet: path: /health/ready - port: 8001 + port: 8000 initialDelaySeconds: 15 periodSeconds: 10 failureThreshold: 30 livenessProbe: httpGet: path: /health - port: 8001 + port: 8000 initialDelaySeconds: 30 periodSeconds: 30 readinessProbe: httpGet: path: /health/ready - port: 8001 + port: 8000 initialDelaySeconds: 5 periodSeconds: 10 diff --git a/apps/base/customer1/trading-platform/data-service/service.yaml b/apps/base/customer1/trading-platform/data-service/service.yaml index 562d721..fe5c75f 100644 --- a/apps/base/customer1/trading-platform/data-service/service.yaml +++ b/apps/base/customer1/trading-platform/data-service/service.yaml @@ -13,6 +13,6 @@ spec: app: trading-data-service ports: - port: 80 - targetPort: 8001 + targetPort: 8000 name: http type: ClusterIP