From 1b2e20081f930acaead54e91cfa65177f6299481 Mon Sep 17 00:00:00 2001 From: subhamkrai Date: Mon, 24 Jul 2023 14:07:10 +0530 Subject: [PATCH] doc: adding empty storageClassName in static pvc we need to add `storageClassName: ""` in static pvc yaml other we'll get error ``` Cannot bind to requested volume "fs-static-pv": storageClassName does not match ``` Signed-off-by: subhamkrai --- docs/static-pvc.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/static-pvc.md b/docs/static-pvc.md index 35ce0e1ff..5b002d4aa 100644 --- a/docs/static-pvc.md +++ b/docs/static-pvc.md @@ -108,6 +108,7 @@ metadata: name: fs-static-pvc namespace: default spec: + storageClassName: "" accessModes: # ReadWriteMany is only supported for Block PVC - ReadWriteOnce