Skip to content

Commit bc57121

Browse files
Doc bug in creating machines with ultra disks by using machine sets
Doc bug in creating machines with ultra disks by using machine sets Here is the documentation link: https://docs.redhat.com/en/documentation/openshift_container_platform/4.16/html/storage/using-container-storage-interface-csi#machineset-creating-azure-ultra-disk_persistent-storage-csi-azure In the above documentation: machine-set-name needs to be changed to "machine_set_name" node-name needs to be changed to "node_name"
1 parent 90230ce commit bc57121

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

modules/machineset-creating-azure-ultra-disk.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,10 @@ ifndef::cpmso[]
118118
+
119119
[source,terminal]
120120
----
121-
$ oc edit machineset <machine-set-name>
121+
$ oc edit machineset <machine_set_name>
122122
----
123123
+
124-
where `<machine-set-name>` is the machine set that you want to provision machines with ultra disks.
124+
where `<machine_set_name>` is the machine set that you want to provision machines with ultra disks.
125125

126126
. Add the following lines in the positions indicated:
127127
+
@@ -162,7 +162,7 @@ endif::mapi[]
162162
+
163163
[source,terminal]
164164
----
165-
$ oc create -f <machine-set-name>.yaml
165+
$ oc create -f <machine_set_name>.yaml
166166
----
167167
endif::cpmso[]
168168

@@ -300,10 +300,10 @@ The machines should be in the `Running` state.
300300
+
301301
[source,terminal]
302302
----
303-
$ oc debug node/<node-name> -- chroot /host lsblk
303+
$ oc debug node/<node_name> -- chroot /host lsblk
304304
----
305305
+
306-
In this command, `oc debug node/<node-name>` starts a debugging shell on the node `<node-name>` and passes a command with `--`. The passed command `chroot /host` provides access to the underlying host OS binaries, and `lsblk` shows the block devices that are attached to the host OS machine.
306+
In this command, `oc debug node/<node_name>` starts a debugging shell on the node `<node_name>` and passes a command with `--`. The passed command `chroot /host` provides access to the underlying host OS binaries, and `lsblk` shows the block devices that are attached to the host OS machine.
307307

308308
.Next steps
309309

0 commit comments

Comments
 (0)