Recall & Review
beginner
What is a Volume in Kubernetes?
A Volume in Kubernetes is a storage area accessible to containers in a Pod. It exists only as long as the Pod runs and is used to share data between containers or persist data temporarily.
Click to reveal answer
beginner
What is a Persistent Volume (PV) in Kubernetes?
A Persistent Volume is a piece of storage in the cluster that exists independently of Pods. It is managed by the cluster and can be reused by different Pods, providing long-term data storage.
Click to reveal answer
intermediate
How does a Volume differ from a Persistent Volume in Kubernetes?
A Volume is tied to the lifecycle of a Pod and is temporary. A Persistent Volume exists beyond Pod life and can be reused, offering durable storage.
Click to reveal answer
intermediate
What is a Persistent Volume Claim (PVC)?
A Persistent Volume Claim is a request by a user for storage. It asks for a Persistent Volume with specific size and access modes, allowing Pods to use persistent storage without knowing the details of the storage.
Click to reveal answer
beginner
Why use Persistent Volumes instead of regular Volumes?
Persistent Volumes provide data durability beyond Pod restarts or failures. They allow data to survive Pod deletion and enable sharing data across Pods, which regular Volumes cannot do.
Click to reveal answer
Which storage type in Kubernetes lasts only as long as the Pod runs?
✗ Incorrect
A Volume is tied to the Pod lifecycle and is deleted when the Pod is removed.
What does a Persistent Volume Claim (PVC) do?
✗ Incorrect
PVCs are used by users to request storage from existing Persistent Volumes.
Which Kubernetes object represents actual physical storage in the cluster?
✗ Incorrect
Persistent Volumes represent real storage resources in the cluster.
Why might you choose a Persistent Volume over a Volume?
✗ Incorrect
Persistent Volumes keep data even if Pods are deleted or restarted.
Which of these is NOT true about Volumes in Kubernetes?
✗ Incorrect
Only Persistent Volumes provide long-term storage independent of Pods.
Explain the difference between a Volume and a Persistent Volume in Kubernetes.
Think about how long the storage lasts and who manages it.
You got /4 concepts.
Describe the role of a Persistent Volume Claim in Kubernetes storage management.
Consider how users ask for storage without managing physical resources.
You got /4 concepts.