Skip to main content

Configure Liveness and Readiness Probes

The Liveness and Readiness probes’ time-related parameters can be configured through aggregatorSpec.readinessProbeSpec/livenessProbeSpec and leafSpec.readinessProbeSpec/livenessProbeSpec.

Note: Liveness probes have been deprecated as of Operator 3.0.96 and later.

aggregatorSpec:
  readinessProbeSpec:
    initialDelaySeconds: 10
    timeoutSeconds: 1
    periodSeconds: 10
    successThreshold: 1
    failureThreshold: 3
  livenessProbeSpec:
    initialDelaySeconds: 10
    timeoutSeconds: 1
    periodSeconds: 10
    successThreshold: 1
    failureThreshold: 3
leafSpec:
  readinessProbeSpec:
    initialDelaySeconds: 10
    timeoutSeconds: 1
    periodSeconds: 10
    successThreshold: 1
    failureThreshold: 3
  livenessProbeSpec:
    initialDelaySeconds: 10
    timeoutSeconds: 1
    periodSeconds: 10
    successThreshold: 1
    failureThreshold: 3

Refer to the Kubernetes documentation for more information about these attributes.