Startup probes in Kubernetes
Question:
Given the following startup probe configuration, which of the following statements is correct? (Choose one.)
startupProbe:
httpGet:
path: /health
port: 8080
failureThreshold: 10
periodSeconds: 5
- The startup probe retries the HTTP check at most five times
- After a failure, the probe waits 10 seconds until the next verification
- The startup probe disables the liveness and readiness probes until it finishes sucesfully
- The probe check must succeed 10 times for Kubernetes to consider the probe successful
Answer:
C - is the correct answer