You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Edit command in Removing a local volume or local volume set
- Incorrect command in Removing a local volume or local volume set
- Here is the documentation link: https://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html/storage/configuring-persistent-storage#local-removing-device_persistent-storage-local
Here is the current documentation:
1. Edit the cluster resource:
~~~
$ oc edit localvolume <name> -n openshift-local-storage
~~~
2. Delete any persistent volumes created.
~~~
$ oc delete pv <pv-name>
~~~
- These commands are correct, but not in the correct standard format.
- So we need to perform this change in the documentation as well.
Here is the updated documentation:
1. Edit the cluster resource:
~~~
$ oc edit localvolume <local_volume_name> -n openshift-local-storage
~~~
2. Delete any persistent volumes created.
~~~
$ oc delete pv <pv_name>
~~~
Updated Edit command in Removing a local volume or local volume set
- Incorrect command in Removing a local volume or local volume set
- Here is the documentation link: https://docs.redhat.com/en/documentation/openshift_container_platform/4.17/html/storage/configuring-persistent-storage#local-removing-device_persistent-storage-local
Here is the current documentation:
1. Edit the cluster resource:
~~~
$ oc edit localvolume <name> -n openshift-local-storage
~~~
2. Delete any persistent volumes created.
~~~
$ oc delete pv <pv-name>
~~~
- These commands are correct, but not in the correct standard format.
- So we need to perform this change in the documentation as well.
Here is the updated documentation:
1. Edit the cluster resource:
~~~
$ oc edit localvolume <local_volume_name> -n openshift-local-storage
~~~
2. Delete any persistent volumes created.
~~~
$ oc delete pv <pv_name>
~~~
0 commit comments