Creating Kubernetes Persistent Volumes
Explore how to create Kubernetes PersistentVolumes that abstract AWS EBS storage, manage capacity and access modes, and enable persistent state in your cluster. This lesson teaches you to define, configure, and verify PersistentVolumes, preparing you to manage storage for stateful applications in Kubernetes.
Understanding PersistentVolumes
The fact that we have a few EBS volumes available does not mean that Kubernetes knows about their existence. We need to add PersistentVolumes that will act as a bridge between our Kubernetes cluster and AWS EBS volumes.
PersistentVolumes allow us to ...