From 4057a1550879d5ef04ff698af02e4511983dc52e Mon Sep 17 00:00:00 2001 From: zhenyus Date: Thu, 26 Jun 2025 23:13:24 +0800 Subject: [PATCH] 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 --- freeleaps/helm-pkg/freeleaps/values.prod.yaml | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/freeleaps/helm-pkg/freeleaps/values.prod.yaml b/freeleaps/helm-pkg/freeleaps/values.prod.yaml index 40a11bda..105a12ca 100644 --- a/freeleaps/helm-pkg/freeleaps/values.prod.yaml +++ b/freeleaps/helm-pkg/freeleaps/values.prod.yaml @@ -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