tezvyn:

Kubernetes StorageClass: A Menu for Your Data

Source: kubernetes.iointermediate

A StorageClass is an admin-defined 'menu' of storage options, abstracting the provider. Developers request storage by name (e.g., 'fast-ssd') via a PersistentVolumeClaim, and Kubernetes dynamically provisions it.

A Kubernetes StorageClass is like a menu for storage, letting admins define 'flavors' (like fast SSDs or cheap block storage) without exposing implementation details. A developer requests storage from this menu using a PersistentVolumeClaim, and the provisioner automatically creates the underlying volume. The `reclaimPolicy` is a major footgun; the default `Delete` policy will destroy your physical data when the claim is removed, so be sure you need it.

Read the original → kubernetes.io

Get five bites like this every day.

Tezvyn delivers a daily feed of 60-second tech bites with quizzes to lock in what you learn.

Kubernetes StorageClass: A Menu for Your Data · Tezvyn