Commit 8992365
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 90230ce commit 8992365
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
19 | 19 | | |
20 | 20 | | |
21 | 21 | | |
22 | | - | |
| 22 | + | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
0 commit comments