0% found this document useful (0 votes)
41 views

Kubernetes Persistent Volumes

Kubernetes Persistent

Uploaded by

varam10
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
41 views

Kubernetes Persistent Volumes

Kubernetes Persistent

Uploaded by

varam10
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 13

Kubernetes

Dynamic Provisioning
Kubernetes
Persistent Volumes
Volumes vs Persistent Volumes
Volumes exist in the context of specific Pods.
A Volume’s lifecycle is coupled to the Pod
that owns it. It allows safe use of storage
by all the containers in the Pod, but the
volume’s data will still be lost when the
Pod terminates.

Persistent Volumes build upon the


foundations established by Volumes. They
provide storage that’s decoupled from
Pods, allowing data to persist beyond the
lifecycle of individual Pods.
Volumes vs Persistent Volumes
Types of Persistent Volumes

Storage Requirements
PV and PVC
PV and PVC
The lifecycles of PVs and PVCs

Access Modes
Dynamic provisioning with
StorageClass
Dynamically provisioning PVs
Examples of PV Configs

Persistent Volume for CSI (Container


Storage Interface)
Examples of PV Configs

Persistent Volume for Google


Persistent Disk
Examples of PV Configs

Persistent Volume for HostPath

You might also like