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: limits:
cpu: 500m cpu: 500m
memory: 512Mi memory: 512Mi
probes: probes: {}
readiness: # readiness:
type: httpGet # type: httpGet
config: # config:
path: /api/_/readyz # path: /api/_/readyz
port: 8001 # port: 8001
initialDelaySeconds: 30 # initialDelaySeconds: 30
periodSeconds: 30 # periodSeconds: 30
timeoutSeconds: 120 # timeoutSeconds: 120
successThreshold: 1 # successThreshold: 1
failureThreshold: 15 # failureThreshold: 15
liveness: # liveness:
type: httpGet # type: httpGet
config: # config:
path: /api/_/livez # path: /api/_/livez
port: 8001 # port: 8001
initialDelaySeconds: 30 # initialDelaySeconds: 30
periodSeconds: 30 # periodSeconds: 30
timeoutSeconds: 120 # timeoutSeconds: 120
successThreshold: 1 # successThreshold: 1
failureThreshold: 15 # failureThreshold: 15
terminationGracePeriodSeconds: 30 # terminationGracePeriodSeconds: 30
services: services:
- name: freeleaps-service - name: freeleaps-service
type: ClusterIP type: ClusterIP