What is the difference between persistent volume (PV) and persistent volume claim (PVC) in simple terms?

后端 未结 10 1811
我在风中等你
我在风中等你 2021-01-30 19:22

What is the difference between persistent volume (PV) and persistent volume claim (PVC) in Kubernetes/ Openshift by referring to documentation?

What is the difference be

10条回答
  •  不要未来只要你来
    2021-01-30 20:11

    PV is a logical representation of storage attached to a Pod or a Deployment. It uses PVC to request storage resource from the physical storage resources in your Kube Cluster. In my opinion its relationship is more like:

    Pods -> PV -> PVC -> Physical Storage

    Many explanations online sounds confusing and I understand this from their relationship in manifest files.

提交回复
热议问题