From 25afd72dd5c1c549fbd3e2ccc6e5a6abff378789 Mon Sep 17 00:00:00 2001 From: Yongun Seong Date: Sat, 18 Jan 2025 23:50:22 +0900 Subject: [PATCH] feat(docs): add warning to correctly size pvc storage --- docs/src/usage/run-workload-examples.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/src/usage/run-workload-examples.md b/docs/src/usage/run-workload-examples.md index 0e8bb2a..65923d9 100644 --- a/docs/src/usage/run-workload-examples.md +++ b/docs/src/usage/run-workload-examples.md @@ -91,6 +91,20 @@ spec: storage: 100Gi ``` +
+ +The volume **cannot** be resized after creation. Ensure that you allocate enough +space for your needs, according to your approved storage quota. + +If you need more storage space, + +1. Request a temporary storage quota increase. +2. Create a new PersistentVolumeClaim with the new size. +3. Copy your data from the old volume to the new volume. +4. Delete the old PersistentVolumeClaim. + +
+ ```yaml # persistent-volume-shell.yaml apiVersion: v1