From 324027450b41bac73a04a342034a0f280966cf04 Mon Sep 17 00:00:00 2001 From: Gytis Date: Fri, 7 Apr 2017 10:43:54 +0300 Subject: [PATCH] Typo in storage docs Fix typo in storage docs storageClasName -> storageClassName --- docs/concepts/storage/persistent-volumes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/concepts/storage/persistent-volumes.md b/docs/concepts/storage/persistent-volumes.md index 321b202174..8bdc75320b 100644 --- a/docs/concepts/storage/persistent-volumes.md +++ b/docs/concepts/storage/persistent-volumes.md @@ -318,7 +318,7 @@ A claim can request a particular class by specifying the name of a Only PVs of the requested class, ones with the same `storageClassName` as the PVC, can be bound to the PVC. -PVCs don't necessarily have to request a class. A PVC with its `storageClasName` set +PVCs don't necessarily have to request a class. A PVC with its `storageClassName` set equal to `""` is always interpreted to be requesting a PV with no class, so it can only be bound to PVs with no class (no annotation or one set equal to `""`). A PVC with no `storageClassName` is not quite the same and is treated differently