From 2365ff11475a90b323cd576a3cca2035ffa51e68 Mon Sep 17 00:00:00 2001 From: srir Date: Thu, 31 Jul 2025 14:46:25 +0530 Subject: [PATCH] OCPBUGS#43062: Updating the PVC config example --- ...sioning-storage-using-logical-volume-manager-operator.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/lvms-provisioning-storage-using-logical-volume-manager-operator.adoc b/modules/lvms-provisioning-storage-using-logical-volume-manager-operator.adoc index a5d821083c..0d659a0d81 100644 --- a/modules/lvms-provisioning-storage-using-logical-volume-manager-operator.adoc +++ b/modules/lvms-provisioning-storage-using-logical-volume-manager-operator.adoc @@ -37,7 +37,7 @@ metadata: spec: accessModes: - ReadWriteOnce - volumeMode: Block <2> + volumeMode: Filesystem <2> resources: requests: storage: 10Gi <3> @@ -46,7 +46,7 @@ spec: storageClassName: lvms-vg1 <5> ---- <1> Specify a name for the PVC. -<2> To create a block PVC, set this field to `Block`. To create a file PVC, set this field to `Filesystem`. +<2> To create a file PVC, set this field to `Filesystem`. To create a block PVC, set this field to `Block`. <3> Specify the storage size. If the value is less than the minimum storage size, the requested storage size is rounded to the minimum storage size. The total storage size you can provision is limited by the size of the Logical Volume Manager (LVM) thin pool and the over-provisioning factor. <4> Optional: Specify the storage limit. Set this field to a value that is greater than or equal to the minimum storage size. Otherwise, PVC creation fails with an error. <5> The value of the `storageClassName` field must be in the format `lvms-` where `` is the value of the `deviceClasses.name` field in the `LVMCluster` CR.