Storage is a fundamental component of deploying stateful applications in Kubernetes. Through features like Volumes, Persistent Volumes (PVs), Persistent Volume Claims (PVCs), and StorageClasses, Kubernetes simplifies how storage is provisioned and managed across clusters.
This set of multiple-choice questions (MCQs) on Kubernetes Storage Management is designed to help learners test and enhance their understanding of persistent storage, access modes, reclaim policies, and dynamic provisioning. Whether you’re preparing for interviews or a Kubernetes certification, these MCQs will improve your practical and theoretical knowledge of storage in Kubernetes.
1.) What is the primary purpose of a Kubernetes Volume?
2.) Which Kubernetes object is used to request storage from the cluster?
3.) What does PV stand for in Kubernetes?
4.) What is the relationship between PV and PVC?
5.) Which of the following enables dynamic provisioning of storage in Kubernetes?
6.) Which access mode allows a volume to be mounted by a single node for read/write?
7.) Which access mode allows multiple pods to read and write the same volume from multiple nodes?
8.) What is the default reclaim policy for Persistent Volumes?
9.) Which field in the PVC YAML specifies the amount of storage requested?
10.) What is a VolumeMount in a Pod spec?