An application pod requires concurrent read and write access to the same storage volume from multiple worker nodes simultaneously. Which access mode must be specified in the PersistentVolumeClaim to satisfy this requirement?
Correct. ReadWriteMany enables multiple nodes to mount the volume concurrently with read and write permissions.
Why this answer
ReadWriteMany (RWX) allows the volume to be mounted as read-write by multiple nodes simultaneously.