- Home
- All questions
- Question 810
CKA study material · question 810 of 1000
A PersistentVolume backed by an empty block device is mounted by a Pod for the first time, with volumeMode left unset. What happens?
Show the answer
Answer: C. Kubernetes creates a filesystem on the device before mounting it
volumeMode defaults to Filesystem, and an empty block device is formatted before the first mount. Block mode is what hands the raw device through untouched.
Source: Persistent Volumes (Kubernetes) — PersistentVolumes › Volume Mode