A library publishes static content that many reader Pods on different nodes should mount without write access. Which access mode fits?
Select an answer to reveal the explanation.
Short Explanation
Think of a reference book chained open in every branch—lots of readers, no red pens. ReadOnlyMany is that multi-node, read-only mount mode. RWO is the wrong shape for many nodes, and hoping fsGroup or omitting accessModes invents ROX is wishful.
Full Explanation
ReadOnlyMany (ROX) allows multiple nodes to mount the volume read-only, fitting published content distribution. RWO does not express multi-node read-only sharing. RWX implies read-write capability when supported. accessModes must still be set appropriately; volumeMode alone does not default to ROX/RWX semantics.