我试图了解Openshift 中 Persistent Volume Claims 的不同访问模式。从这里找到以下信息
Access Mode CLI Abbreviation Description
ReadWriteOnce RWO The volume can be mounted as read-write by a single node.
ReadOnlyMany ROX The volume can be mounted read-only by many nodes.
ReadWriteMany RWX The volume can be mounted as read-write by many nodes.
我知道 PVC 绑定到单个项目/命名空间,也可以扩展到不同的项目。
但这里的困惑是,这里的“单节点”或“多节点”是什么意思。例如,在RWO
模式下,"The volume can be mounted as read-write by a single node"
. 它指的是什么节点。
有人可以告诉我这些模式对于单个项目/命名空间的意义吗?带有 RWO 的存储是否只能对一个应用程序或项目内的所有应用程序具有写入权限?