- Home
- All questions
- Question 839
CKA study material · question 839 of 1000
One container mounts a volume with readOnly: true. What does that mean for the other containers in the Pod?
Show the answer
Answer: B. They may still mount the same volume read-write
readOnly is a property of one container's mount, not of the volume, so another container in the same Pod may mount it read-write.
Source: Volumes (Kubernetes) — Read-only mounts