After readiness failures, a flaky health endpoint flickers. Which probe field requires multiple consecutive successes before marking the Pod ready again?
Select an answer to reveal the explanation.
Short Explanation
Coming back online shouldn’t be a single lucky ping. successThreshold on readiness says ‘pass me N times in a row’ before Endpoints take you back. That smooths flaky health endpoints without ignoring real recovery.
Full Explanation
For readiness probes, successThreshold configures how many consecutive successes are required after a failure before the container is considered ready again (liveness successThreshold is fixed at 1). Raising readiness successThreshold stabilizes flapping endpoints. failureThreshold counts consecutive failures, not recovery successes; periodSeconds and timeoutSeconds control cadence and per-probe timeouts, not the success streak.