Kubernetes

What are Storage classes in Kubernetes?

A StorageClass provides a way for administrators to describe the “classes” of storage they offer. Each StorageClass contains the fields provisioner, parameters, and reclaimPolicy, which are used when a PersistentVolume belonging to the class needs to be dynamically provisioned. There will always be a default StorageClass in Kubernetes which is used by all PVCs if not specified.

What are Storage classes in Kubernetes? Read More »

Scroll to Top