Skip to content

Commit 9f7971f

Browse files
committed
docs: extra info about storage
1 parent 31b2ad4 commit 9f7971f

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

docs/tutorial/storage.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
Kubernetes doesn't provide storage - you need an external system.
44

5+
## Storage Classes
6+
7+
Storage Classes are Kubernetes' abstraction layer for dynamic provisioning. They define:
8+
- Which provisioner to use (e.g., AWS EBS, Longhorn, NFS)
9+
- Performance characteristics (SSD vs HDD, replication factor)
10+
- Reclaim policies (delete or retain volumes when claims are deleted)
11+
12+
When you create a PersistentVolumeClaim (PVC), Kubernetes automatically provisions storage from the
13+
specified StorageClass.
14+
15+
Most clusters have a default StorageClass, so you often don't need to specify one explicitly.
16+
517
## Options
618

719
### Local/HostPath

0 commit comments

Comments
 (0)