Skip to content

Commit 8554668

Browse files
prithvipatil97abrennan89
authored andcommitted
Update storage-persistent-storage-reclaim-manual.adoc
- one variable needs to be updated with underscores instead of hyphens. - Here is the documentation: https://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/storage/understanding-persistent-storage#reclaim-manual_understanding-persistent-storage Here is the current documentation: 1. Delete the PV. $ oc delete pv <pv-name> Here `<pv-name> ` is mentioned with `underscores`. But as per the standard format, it should be with `hyphens`. Also, `full stop` is mentioned after `Delete the PV.`, but `colon` ( is required here. Here is the updated look: 1. Delete the PV: ~~~ $ oc delete pv <pv_name> ~~~ New-Update modules/storage-persistent-storage-reclaim-manual.adoc Here is the current documentation: 1. Delete the PV. ~~~ $ oc delete pv <pv-name> ~~~ - Here `<pv-name> ` is mentioned with `hyphens`. - But as per the standard format, it should be with `underscores`. - Also, `full stop` is mentioned after `Delete the PV.`, but `colon` (:) is required here. Here is the updated look: 1. Delete the PV by running the following command: ~~~ $ oc delete pv <pv_name> ~~~ Co-authored-by: Ashleigh Brennan <abrennan@redhat.com>
1 parent f1d8006 commit 8554668

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/storage-persistent-storage-reclaim-manual.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ endif::[]
1919
.Procedure
2020
To manually reclaim the PV as a cluster administrator:
2121

22-
. Delete the PV.
22+
. Delete the PV by running the following command:
2323
+
2424
[source,terminal]
2525
----
26-
$ oc delete pv <pv-name>
26+
$ oc delete pv <pv_name>
2727
----
2828
+
2929
ifndef::openshift-dedicated,openshift-rosa[]

0 commit comments

Comments
 (0)