28.3.5. 创建持久性卷声明
持久性卷声明(PVC)指定所需的访问模式和存储容量。目前,仅基于这两个属性,PVC 绑定到一个 PV。当 PV 与 PVC 绑定后,PV 基本上与 PVC 的项目绑定,且无法与另一个 PVC 绑定。PV 和 PVC 有一对一的映射。但是,同一项目中的多个 pod 可以使用相同的 PVC。
例 28.7. PVC 对象定义
将 PVC 定义保存到文件中,如 ceph-claim.yaml 并创建 PVC:
# oc create -f ceph-claim.yaml
persistentvolumeclaim "ceph-claim" created
#and verify the PVC was created and bound to the expected PV:
# oc get pvc
NAME LABELS STATUS VOLUME CAPACITY ACCESSMODES AGE
ceph-claim <none> Bound ceph-pv 1Gi RWX 21s
1
- 1
- 声明已绑定到 ceph-pv PV。