Kubernetes Storage – Dynamic Provisioning using Storage Classes

Introduction In previous post, we learned that Kubernetes Persistent Volume Subsystem decouples data from application pods and containers and abstracts implementation details. The main components are as follows: PersistentVolume (expose external storage to a PV) PersistentVolumeClaim (a request for persistent volume) StorageClasses (for dynamic provisioning) We then used PersistentVolume and PersistentVolumeClaim in a static provisioning … Read more