Skip to content

Probes configuration in values.yaml file

The liveness and readiness probes such as the status thresholds and time values can be modified.

# Liveness probe using the applications HTTP probe endpoint  
    livenessProbe: 
      failureThreshold: 4 
      initialDelaySeconds: 30 
      periodSeconds: 30 
      successThreshold: 1 
      timeoutSeconds: 30 
# Readiness probe using the applications HTTP probe endpoint 
    readinessProbe: 
      failureThreshold: 2 
      initialDelaySeconds: 30 
      periodSeconds: 30 
      successThreshold: 1 
      timeoutSeconds: 30 

Information about the configuration options can be found in the Kubernetes documentation.

Parent topic: Preparation