Cloud Native Storage: Persistent Volumes and Data Management
Cloud Native Storage: Persistent Volumes and Data Management Cloud native storage keeps data alive beyond the life of a single pod. In Kubernetes, a Persistent Volume (PV) is a piece of storage in the cluster. A Persistent Volume Claim (PVC) is a request for that storage by a pod. When a PVC matches a PV or a StorageClass provisions a new volume, Kubernetes binds them and the app can read and write data without worrying about the underlying device. ...