From b7a162e2d8c4ff7c2535ebf06b7e3ead6f719e19 Mon Sep 17 00:00:00 2001 From: "Ehsan.Asadi" Date: Wed, 31 Dec 2025 11:08:57 +0330 Subject: [PATCH] added cmd --- helm/peikarband/values-production.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/helm/peikarband/values-production.yaml b/helm/peikarband/values-production.yaml index 06dce7a..daffd35 100644 --- a/helm/peikarband/values-production.yaml +++ b/helm/peikarband/values-production.yaml @@ -118,7 +118,8 @@ redis: # Override readiness probe for production # DEBUG MODE: Using exec probe that always succeeds (for sleep infinity) -# To switch back to normal operation, replace exec with httpGet: +# IMPORTANT: httpGet must be explicitly null to prevent merge with values.yaml +# To switch back to normal operation, replace exec with httpGet and remove null: # httpGet: # path: /ping # port: 8000 @@ -127,6 +128,7 @@ redis: # timeoutSeconds: 5 # failureThreshold: 6 readinessProbe: + httpGet: null # Explicitly null to prevent merge exec: command: ["/bin/sh", "-c", "true"] initialDelaySeconds: 5 @@ -136,7 +138,8 @@ readinessProbe: # Override liveness probe # DEBUG MODE: Using exec probe that always succeeds (for sleep infinity) -# To switch back to normal operation, replace exec with httpGet: +# IMPORTANT: httpGet must be explicitly null to prevent merge with values.yaml +# To switch back to normal operation, replace exec with httpGet and remove null: # httpGet: # path: /live # port: 8000 @@ -145,6 +148,7 @@ readinessProbe: # timeoutSeconds: 5 # failureThreshold: 3 livenessProbe: + httpGet: null # Explicitly null to prevent merge exec: command: ["/bin/sh", "-c", "true"] initialDelaySeconds: 5