Bird
0
0

Which probe type does Kubernetes run after the startupProbe succeeds?

easy📝 Conceptual Q2 of 15
Kubernetes - Health Checks and Probes
Which probe type does Kubernetes run after the startupProbe succeeds?
AReadiness probe
BBoth readiness and liveness probes
CLiveness probe
DNo other probes run after startupProbe
Step-by-Step Solution
Solution:
  1. Step 1: Understand probe sequence

    Kubernetes runs the startupProbe first to check if the app started. After it succeeds, it runs readiness and liveness probes.
  2. Step 2: Confirm readiness and liveness probes run after startup

    Both readiness and liveness probes monitor the container after startupProbe passes.
  3. Final Answer:

    Both readiness and liveness probes run after startupProbe succeeds -> Option B
  4. Quick Check:

    startupProbe success triggers readiness and liveness probes [OK]
Quick Trick: Startup probe runs first, then readiness and liveness probes [OK]
Common Mistakes:
  • Thinking only readiness probe runs after startupProbe
  • Believing startupProbe disables other probes
  • Assuming probes run in parallel from start

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes