fix(dashboard): align port to 3000 and probes to root path

- containerPort: 3000 (matches Next.js default + Dockerfile ENV PORT=3000)
- All probes (startup/liveness/readiness): path  (Next.js serves root when ready)
- Service targetPort: 3000

Fixes 'not ready' and 'can't reach it' (previous mismatch with 8000 + /api/health which didn't exist).

Live manifests updated (source of truth).
This commit is contained in:
Sirius Devops 2026-05-25 05:55:21 +00:00
parent a07259cd25
commit d002a7896b
2 changed files with 10 additions and 10 deletions

View file

@ -29,7 +29,7 @@ spec:
image: ghcr.io/sirius0xdev/trading-dashboard:latest
imagePullPolicy: Always
ports:
- containerPort: 8000
- containerPort: 3000
name: http
resources:
requests:
@ -60,20 +60,20 @@ spec:
key: password
startupProbe:
httpGet:
path: /api/health
port: 8000
initialDelaySeconds: 15
path: /
port: 3000
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 30
livenessProbe:
httpGet:
path: /api/health
port: 8000
initialDelaySeconds: 30
path: /
port: 3000
initialDelaySeconds: 15
periodSeconds: 30
readinessProbe:
httpGet:
path: /api/health
port: 8000
path: /
port: 3000
initialDelaySeconds: 5
periodSeconds: 10

View file

@ -13,6 +13,6 @@ spec:
app: trading-dashboard
ports:
- port: 80
targetPort: 8000
targetPort: 3000
name: http
type: ClusterIP