Merge pull request #145 from sirius0xdev/fix/trading-startup-probes

fix(trading-platform): dashboard port 3000 + startupProbe grace for data/dashboard/execute services
This commit is contained in:
sirius0xdev 2026-05-25 01:57:21 -04:00 committed by GitHub
commit 8c12536130
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 14 additions and 14 deletions

View file

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

View file

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

View file

@ -65,8 +65,8 @@ spec:
path: /health path: /health
port: 8001 port: 8001
initialDelaySeconds: 15 initialDelaySeconds: 15
periodSeconds: 5 periodSeconds: 10
failureThreshold: 6 failureThreshold: 30
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /health path: /health