refactor(freeleaps): remove health check configurations from production values.yaml

- Cleared out the readiness and liveness probe configurations in values.prod.yaml, setting them to an empty state for potential future adjustments.

Signed-off-by: zhenyus <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-06-26 23:13:24 +08:00
parent f684047dbb
commit 4057a15508

View File

@ -26,28 +26,28 @@ freeleaps:
limits:
cpu: 500m
memory: 512Mi
probes:
readiness:
type: httpGet
config:
path: /api/_/readyz
port: 8001
initialDelaySeconds: 30
periodSeconds: 30
timeoutSeconds: 120
successThreshold: 1
failureThreshold: 15
liveness:
type: httpGet
config:
path: /api/_/livez
port: 8001
initialDelaySeconds: 30
periodSeconds: 30
timeoutSeconds: 120
successThreshold: 1
failureThreshold: 15
terminationGracePeriodSeconds: 30
probes: {}
# readiness:
# type: httpGet
# config:
# path: /api/_/readyz
# port: 8001
# initialDelaySeconds: 30
# periodSeconds: 30
# timeoutSeconds: 120
# successThreshold: 1
# failureThreshold: 15
# liveness:
# type: httpGet
# config:
# path: /api/_/livez
# port: 8001
# initialDelaySeconds: 30
# periodSeconds: 30
# timeoutSeconds: 120
# successThreshold: 1
# failureThreshold: 15
# terminationGracePeriodSeconds: 30
services:
- name: freeleaps-service
type: ClusterIP