Fix data-service port mismatch: container runs on 8000, not 8001

This commit is contained in:
sirius0xdev 2026-05-26 10:54:23 -09:00
parent c5e2ef16d2
commit e78674a964
2 changed files with 5 additions and 5 deletions

View file

@ -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

View file

@ -13,6 +13,6 @@ spec:
app: trading-data-service
ports:
- port: 80
targetPort: 8001
targetPort: 8000
name: http
type: ClusterIP