The flow chart is somewhat like this below
flowchart LR
P1["Pod"]
PVC1["PersistentVolumeClaim (PVC)"]
SC1["StorageClass"]
PV1["PersistentVolume (PV)"]
P1 -->|mounts| PVC1
PVC1 -->|requests storage| SC1
SC1 -->|dynamically provisions| PV1
PVC1 -->|bound to| PV1
PV1 -->|actualstorage| P1
-
Pod mounts a PVC.
-
The PVC uses a StorageClass.
-
The StorageClass provisions a PV dynamically.
-
The PVC becomes bound to that PV.
-
The Pod now uses that PV as actual storage.
No comments:
Post a Comment