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 image: ghcr.io/sirius0xdev/trading-data-service:latest
imagePullPolicy: Always imagePullPolicy: Always
ports: ports:
- containerPort: 8001 - containerPort: 8000
name: http name: http
resources: resources:
requests: requests:
@ -63,19 +63,19 @@ spec:
startupProbe: startupProbe:
httpGet: httpGet:
path: /health/ready path: /health/ready
port: 8001 port: 8000
initialDelaySeconds: 15 initialDelaySeconds: 15
periodSeconds: 10 periodSeconds: 10
failureThreshold: 30 failureThreshold: 30
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /health path: /health
port: 8001 port: 8000
initialDelaySeconds: 30 initialDelaySeconds: 30
periodSeconds: 30 periodSeconds: 30
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health/ready path: /health/ready
port: 8001 port: 8000
initialDelaySeconds: 5 initialDelaySeconds: 5
periodSeconds: 10 periodSeconds: 10

View file

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