A developer deploys an application that mounts a PVC in read-only mode inside the pod specification. How is this configured in the Pod's volumeMounts?
volumeMounts supports the readOnly boolean flag per container mount.
Why this answer
Setting 'readOnly: true' in the pod's volumeMounts array mounts the PVC in read-only mode for that container.