Configure Liveness and Readiness Probes
The Liveness
and Readiness
probes’ time-related parameters can be configured through aggregatorSpec.readinessProbeSpec/livenessProbeSpec
and leafSpec.readinessProbeSpec/livenessProbeSpec
.
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.