Solved

Kubernetes Question of the day July 9


Userlevel 7
Badge +22

What do Storage Classes in Kubernetes allow you to do? 

icon

Best answer by Elias Araya 9 July 2022, 17:31

View original

4 comments

Userlevel 7
Badge +17

Storage classes describe different kinds or classes of storage to use with different services, service levels or backup policies….

I think they describe primary persistent storage, but I am not completely sure about that. Perhaps there are classes for ephemeral storage, too.

Userlevel 7
Badge +20

Storage classes describe different kinds or classes of storage to use with different services, service levels or backup policies

Userlevel 1

More important, it enables dynamic storage provisioning.

 

Userlevel 7
Badge +9

In addition to what @JMeixner, a Kubernetes StorageClass enables you to dynamically provision persistent volumes (PV) in a Kubernetes cluster. Kubernetes administrators define classes of storage, and then pods can dynamically request the specific type of storage they need

Comment