FIX(jaejadle): change health check path to /

- jaejadle has no /api/health endpoint
- Use root path for liveness/readiness probes
This commit is contained in:
2026-01-05 16:06:43 +09:00
parent 23bb95c32f
commit a4c5bbe70c
2 changed files with 4 additions and 4 deletions

View File

@@ -40,13 +40,13 @@ spec:
memory: 300Mi memory: 300Mi
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /api/health path: /
port: 3000 port: 3000
initialDelaySeconds: 30 initialDelaySeconds: 30
periodSeconds: 10 periodSeconds: 10
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /api/health path: /
port: 3000 port: 3000
initialDelaySeconds: 5 initialDelaySeconds: 5
periodSeconds: 5 periodSeconds: 5

View File

@@ -40,13 +40,13 @@ spec:
memory: 300Mi memory: 300Mi
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /api/health path: /
port: 3000 port: 3000
initialDelaySeconds: 30 initialDelaySeconds: 30
periodSeconds: 10 periodSeconds: 10
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /api/health path: /
port: 3000 port: 3000
initialDelaySeconds: 5 initialDelaySeconds: 5
periodSeconds: 5 periodSeconds: 5