FIX(jotion): fix health probe path to /home

- Change livenessProbe path from / to /home
- Change readinessProbe path from / to /home
- Resolve 404 error causing pod restart loop
This commit is contained in:
2026-01-10 02:44:54 +09:00
parent 2c2084b95f
commit aea9ee93e8

View File

@@ -46,6 +46,24 @@ resources:
limits:
memory: 128Mi
livenessProbe:
httpGet:
path: /home
port: 3000
initialDelaySeconds: 30
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readinessProbe:
httpGet:
path: /home
port: 3000
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 1
failureThreshold: 3
env:
- name: NODE_ENV
value: production