Skip to content

Commit 42dc03f

Browse files
$ sing is missing from the command
$ sing is missing from the documentation. Here is the documentation link: https://docs.redhat.com/en/documentation/openshift_container_platform/4.19/html/storage/using-container-storage-interface-csi#persistent-storage-csi-sc-managing-cli_persistent-storage-csi-sc-manage Here is the current documentation look: To manage the storage class using the CLI, run the following command: oc patch clustercsidriver $DRIVERNAME --type=merge -p "{\"spec\":{\"storageClassState\":\"${STATE}\"}}" $ sign is missing in the above command. It will not cause any issue. But as per standard procedure $ sign should be present at the start of command. Here is the updated look of the documentation. To manage the storage class using the CLI, run the following command: $ oc patch clustercsidriver $DRIVERNAME --type=merge -p "{\"spec\":{\"storageClassState\":\"${STATE}\"}}"
1 parent ceec187 commit 42dc03f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/persistent-storage-csi-sc-managing-cli.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ To manage the storage class using the CLI, run the following command:
1616

1717
[source,terminal]
1818
----
19-
oc patch clustercsidriver $DRIVERNAME --type=merge -p "{\"spec\":{\"storageClassState\":\"${STATE}\"}}" <1>
19+
$ oc patch clustercsidriver $DRIVERNAME --type=merge -p "{\"spec\":{\"storageClassState\":\"${STATE}\"}}" <1>
2020
----
2121
<1> Where `${STATE}` is "Removed" or "Managed" or "Unmanaged".
2222
+

0 commit comments

Comments
 (0)