fix liveness probe

This commit is contained in:
sirius0xdev 2026-05-04 22:56:39 +00:00
parent 200e5c2938
commit 86a3ae58c5

View file

@ -22,22 +22,22 @@ spec:
resources:
requests:
cpu: 10m
memory: 32Mi
memory: 100Mi
limits:
cpu: 50m
memory: 64Mi
memory: 150Mi
readinessProbe:
httpGet:
path: / # or /index.html if needed
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
initialDelaySeconds: 30
periodSeconds: 30
livenessProbe:
httpGet:
path: /
port: 8080
initialDelaySeconds: 10
periodSeconds: 20
initialDelaySeconds: 30
periodSeconds: 30
---
apiVersion: v1
kind: Service