We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31b2ad4 commit 9f7971fCopy full SHA for 9f7971f
docs/tutorial/storage.md
@@ -2,6 +2,18 @@
2
3
Kubernetes doesn't provide storage - you need an external system.
4
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
17
## Options
18
19
### Local/HostPath
0 commit comments