added cmd
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Ehsan.Asadi
2025-12-31 11:08:57 +03:30
parent 1fa8d53fbb
commit b7a162e2d8

View File

@@ -118,7 +118,8 @@ redis:
# Override readiness probe for production # Override readiness probe for production
# DEBUG MODE: Using exec probe that always succeeds (for sleep infinity) # 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: # httpGet:
# path: /ping # path: /ping
# port: 8000 # port: 8000
@@ -127,6 +128,7 @@ redis:
# timeoutSeconds: 5 # timeoutSeconds: 5
# failureThreshold: 6 # failureThreshold: 6
readinessProbe: readinessProbe:
httpGet: null # Explicitly null to prevent merge
exec: exec:
command: ["/bin/sh", "-c", "true"] command: ["/bin/sh", "-c", "true"]
initialDelaySeconds: 5 initialDelaySeconds: 5
@@ -136,7 +138,8 @@ readinessProbe:
# Override liveness probe # Override liveness probe
# DEBUG MODE: Using exec probe that always succeeds (for sleep infinity) # 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: # httpGet:
# path: /live # path: /live
# port: 8000 # port: 8000
@@ -145,6 +148,7 @@ readinessProbe:
# timeoutSeconds: 5 # timeoutSeconds: 5
# failureThreshold: 3 # failureThreshold: 3
livenessProbe: livenessProbe:
httpGet: null # Explicitly null to prevent merge
exec: exec:
command: ["/bin/sh", "-c", "true"] command: ["/bin/sh", "-c", "true"]
initialDelaySeconds: 5 initialDelaySeconds: 5