@@ -33,7 +33,7 @@ $ ARCH=<architecture> <1>
33
33
+
34
34
[source,terminal]
35
35
----
36
- $ curl -k https://mirror.openshift.com/pub/openshift-v4/clients/ocp/$OCP_VERSION/openshift-client-linux.tar.gz -o oc.tar.gz
36
+ $ curl -k https://mirror.openshift.com/pub/openshift-v4/$ {ARCH} / clients/ocp/${ OCP_VERSION} /openshift-client-linux.tar.gz -o oc.tar.gz
37
37
----
38
38
+
39
39
[source,terminal]
@@ -50,7 +50,7 @@ $ chmod +x oc
50
50
+
51
51
[source,terminal]
52
52
----
53
- $ curl -k https://mirror.openshift.com/pub/openshift-v4/clients/ocp/$OCP_VERSION/openshift-install-linux.tar.gz -o openshift-install-linux.tar.gz
53
+ $ curl -k https://mirror.openshift.com/pub/openshift-v4/$ {ARCH} / clients/ocp/${ OCP_VERSION} /openshift-install-linux.tar.gz -o openshift-install-linux.tar.gz
54
54
----
55
55
+
56
56
[source,terminal]
@@ -149,23 +149,23 @@ The file names contain the {product-title} version number. They resemble the fol
149
149
[source,terminal]
150
150
----
151
151
$ virt-install \
152
- --name {vn_name} \
152
+ --name <vm_name> \
153
153
--autostart \
154
- --memory={ memory_mb} \
154
+ --memory=< memory_mb> \
155
155
--cpu host \
156
- --vcpus { vcpus} \
157
- --location { media_location} ,kernel={ rhcos_kernel} ,initrd={ rhcos_initrd} \// <1>
156
+ --vcpus < vcpus> \
157
+ --location < media_location> ,kernel=< rhcos_kernel> ,initrd=< rhcos_initrd> \// <1>
158
158
--disk size=100 \
159
- --network network={ virt_network_parm} \
159
+ --network network=< virt_network_parm> \
160
160
--graphics none \
161
161
--noautoconsole \
162
- --extra-args "ip=${IP}::${GATEWAY}:${MASK}:${VM_NAME} ::none" \
163
- --extra-args "nameserver=${NAME_SERVER} " \
162
+ --extra-args "ip=<ip>::<gateway>:<mask>:<hostname> ::none" \
163
+ --extra-args "nameserver=<name_server> " \
164
164
--extra-args "ip=dhcp rd.neednet=1 ignition.platform.id=metal ignition.firstboot" \
165
- --extra-args "coreos.live.rootfs_url={ rhcos_liveos} " \// <2>
166
- --extra-args "ignition.config.url={ rhcos_ign} " \// <3>
165
+ --extra-args "coreos.live.rootfs_url=< rhcos_liveos> " \// <2>
166
+ --extra-args "ignition.config.url=< rhcos_ign> " \// <3>
167
167
--extra-args "random.trust_cpu=on rd.luks.options=discard" \
168
- --extra-args "console=tty1 console=ttyS1,115200n8 " \
168
+ --extra-args "console=ttysclp0 " \
169
169
--wait
170
170
----
171
171
<1> For the `--location` parameter, specify the location of the kernel/initrd on the HTTP or HTTPS server.
0 commit comments