Recall & Review
beginner
What is a liveness probe in Kubernetes?
A liveness probe checks if an application is running. If it fails, Kubernetes restarts the app to keep it healthy.
Click to reveal answer
beginner
What does a readiness probe do?
A readiness probe tells Kubernetes if an app is ready to accept traffic. If not ready, Kubernetes stops sending requests to it.
Click to reveal answer
beginner
Why are probes important for application health?
Probes help detect problems early. They let Kubernetes fix or avoid sending traffic to unhealthy apps, improving reliability.Click to reveal answer
beginner
How does Kubernetes react when a liveness probe fails?
Kubernetes restarts the container to try to fix the problem and keep the app running smoothly.
Click to reveal answer
beginner
What happens if a readiness probe fails?
Kubernetes stops sending new traffic to the app until it passes the readiness check again.
Click to reveal answer
What is the main purpose of a liveness probe?
✗ Incorrect
A liveness probe checks if the app is alive and restarts it if it is not responding.
What does a readiness probe control?
✗ Incorrect
Readiness probes tell Kubernetes if the app is ready to accept traffic.
If a readiness probe fails, what happens?
✗ Incorrect
Kubernetes stops sending traffic to the app until it passes the readiness check.
Why are probes useful in Kubernetes?
✗ Incorrect
Probes detect problems early so Kubernetes can fix or avoid them.
Which probe causes Kubernetes to restart a container if it fails?
✗ Incorrect
Liveness probes trigger restarts when the app is not responding.
Explain how liveness and readiness probes help keep applications healthy in Kubernetes.
Think about how Kubernetes uses these checks to manage app health and traffic.
You got /5 concepts.
Describe what happens when a Kubernetes liveness probe fails and when a readiness probe fails.
Focus on the different reactions Kubernetes has to each probe failure.
You got /4 concepts.