Bird
0
0

What does the periodSeconds parameter specify in a Kubernetes probe?

easy📝 Conceptual Q1 of 15
Kubernetes - Health Checks and Probes
What does the periodSeconds parameter specify in a Kubernetes probe?
AHow often the probe runs after the initial delay
BHow long to wait before starting the probe
CHow long the probe waits for a response before timing out
DThe number of retries before marking the container unhealthy
Step-by-Step Solution
Solution:
  1. Step 1: Understand the role of periodSeconds

    The periodSeconds parameter defines the frequency of probe execution after the initial delay.
  2. Step 2: Differentiate from other timing parameters

    initialDelaySeconds is the wait before first probe, timeoutSeconds is max wait for response, so periodSeconds is how often it repeats.
  3. Final Answer:

    How often the probe runs after the initial delay -> Option A
  4. Quick Check:

    periodSeconds = How often probe runs [OK]
Quick Trick: periodSeconds controls probe frequency after delay [OK]
Common Mistakes:
  • Confusing periodSeconds with initialDelaySeconds
  • Thinking timeoutSeconds controls probe frequency
  • Assuming periodSeconds is the timeout duration

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes