Persistent Volumes

  • The benefits of using kubernetes persistent volumes in your applications

    The benefits of using kubernetes persistent volumes in your applications

    A persistent volume (PV) is a storage device mounted into Pods. When the Pod is deleted, the content remains on the PV. A PersistentVolumeClaim requests a storage resource that your deployment can claim. It specifies a size, access mode and StorageClass. The cluster must have a valid data source and a volume plugin installed for […]