Skip to main content
Solved

Kubernetes Question of the day July 9


Geoff Burke
Forum|alt.badge.img+22

What do Storage Classes in Kubernetes allow you to do? 

Best answer by Elias Araya

More important, it enables dynamic storage provisioning.

 

View original
Did this topic help you find an answer to your question?

4 comments

JMeixner
Forum|alt.badge.img+17
  • On the path to Greatness
  • 2650 comments
  • July 9, 2022

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.


Chris.Childerhose
Forum|alt.badge.img+21

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


  • Not a newbie anymore
  • 8 comments
  • Answer
  • July 9, 2022

More important, it enables dynamic storage provisioning.

 


Iams3le
Forum|alt.badge.img+11
  • Veeam Legend
  • 1393 comments
  • July 11, 2022

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