- Home
- All questions
- Question 801
CKA study material · question 801 of 1000
A PersistentVolume is bound ReadWriteOnce. Three Pods of the same Deployment land on the same node and all mount the claim. What happens?
Show the answer
Answer: B. All three mount it, because they are on one node
ReadWriteOnce binds a volume read-write to a single node, and several Pods on that node may share it. ReadWriteOncePod is the mode that restricts access to one Pod.
Source: Persistent Volumes (Kubernetes) — Access Modes