Skip to content

Commit 00b399e

Browse files
authored
Merge pull request #90424 from sr1kar99/2219-add-a-note
TELCODOCS#2219: Fixed doc bugs in LVM Storage docs
2 parents df43dd9 + eb8d77f commit 00b399e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

modules/lvms-about-creating-lvmcluster-cr.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@
88

99
You can create an `LVMCluster` custom resource (CR) by using the OpenShift CLI (`oc`) or the {product-title} web console. If you have installed {lvms} by using {rh-rhacm-first}, you can also create an `LVMCluster` CR by using {rh-rhacm}.
1010

11+
[IMPORTANT]
12+
====
13+
You must create the `LVMCluster` CR in the same namespace where you installed the {lvms} Operator, which is `openshift-storage` by default.
14+
====
15+
1116
Upon creating the `LVMCluster` CR, {lvms} creates the following system-managed CRs:
1217

1318
* A `storageClass` and `volumeSnapshotClass` for each device class.

modules/lvms-scaling-storage-expand-pvc.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ To expand a PVC, you must update the `storage` field in the PVC.
2323
+
2424
[source,terminal]
2525
----
26-
$ oc patch <pvc_name> -n <application_namespace> -p \ <1>
27-
'{ "spec": { "resources": { "requests": { "storage": "<desired_size>" }}}} --type=merge' <2>
26+
$ oc patch pvc <pvc_name> -n <application_namespace> \ <1>
27+
--type=merge -p \ '{ "spec": { "resources": { "requests": { "storage": "<desired_size>" }}}}' <2>
2828
----
2929
<1> Replace `<pvc_name>` with the name of the PVC that you want to expand.
3030
<2> Replace `<desired_size>` with the new size to expand the PVC.

0 commit comments

Comments
 (0)