From 1b704316c846b4b8d142778cfedea47be84d66ed Mon Sep 17 00:00:00 2001 From: nchauvat Date: Thu, 10 Feb 2022 12:12:36 +0100 Subject: [PATCH] fix typo in definition of access modes IIRC https://kubernetes.io/docs/concepts/storage/persistent-volumes/#access-modes it is the PVClaim that lists the access modes it requires and the PV that lists the access modes it supports. --- slides/k8s/pv-pvc-sc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/slides/k8s/pv-pvc-sc.md b/slides/k8s/pv-pvc-sc.md index 66cedd2f..cdd7ee64 100644 --- a/slides/k8s/pv-pvc-sc.md +++ b/slides/k8s/pv-pvc-sc.md @@ -30,9 +30,9 @@ - ReadWriteOncePod (only one pod can access the volume; new in Kubernetes 1.22) -- A PV lists the access modes that it requires +- A PVC lists the access modes that it requires -- A PVC lists the access modes that it supports +- A PV lists the access modes that it supports ⚠️ A PV with only ReadWriteMany won't satisfy a PVC with ReadWriteOnce! @@ -320,4 +320,4 @@ kubectl get pv,pvc :EN:- Storage provisioning :EN:- PV, PVC, StorageClass :FR:- Création de volumes -:FR:- PV, PVC, et StorageClass \ No newline at end of file +:FR:- PV, PVC, et StorageClass