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
Copy file name to clipboardExpand all lines: modules/ipi-install-configuring-the-install-config-file.adoc
+21-6Lines changed: 21 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -52,7 +52,7 @@ platform:
52
52
password: <password>
53
53
bootMACAddress: <NIC1_mac_address>
54
54
rootDeviceHints:
55
-
deviceName: "/dev/disk/by-id/<disk_id>" <5>
55
+
deviceName: "<installation_disk_drive_path>" <5>
56
56
- name: <openshift_master_1>
57
57
role: master
58
58
bmc:
@@ -61,7 +61,7 @@ platform:
61
61
password: <password>
62
62
bootMACAddress: <NIC1_mac_address>
63
63
rootDeviceHints:
64
-
deviceName: "/dev/disk/by-id/<disk_id>" <5>
64
+
deviceName: "<installation_disk_drive_path>" <5>
65
65
- name: <openshift_master_2>
66
66
role: master
67
67
bmc:
@@ -70,7 +70,7 @@ platform:
70
70
password: <password>
71
71
bootMACAddress: <NIC1_mac_address>
72
72
rootDeviceHints:
73
-
deviceName: "/dev/disk/by-id/<disk_id>" <5>
73
+
deviceName: "<installation_disk_drive_path>" <5>
74
74
- name: <openshift_worker_0>
75
75
role: worker
76
76
bmc:
@@ -86,20 +86,35 @@ platform:
86
86
password: <password>
87
87
bootMACAddress: <NIC1_mac_address>
88
88
rootDeviceHints:
89
-
deviceName: "/dev/disk/by-id/<disk_id>" <5>
89
+
deviceName: "<installation_disk_drive_path>" <5>
90
90
pullSecret: '<pull_secret>'
91
91
sshKey: '<ssh_pub_key>'
92
92
----
93
93
+
94
+
--
94
95
<1> Scale the worker machines based on the number of worker nodes that are part of the {product-title} cluster. Valid options for the `replicas` value are `0` and integers greater than or equal to `2`. Set the number of replicas to `0` to deploy a three-node cluster, which contains only three control plane machines. A three-node cluster is a smaller, more resource-efficient cluster that can be used for testing, development, and production. You cannot install the cluster with only one worker.
95
96
<2> When deploying a cluster with static IP addresses, you must set the `bootstrapExternalStaticIP` configuration setting to specify the static IP address of the bootstrap VM when there is no DHCP server on the `baremetal` network.
96
97
<3> When deploying a cluster with static IP addresses, you must set the `bootstrapExternalStaticGateway` configuration setting to specify the gateway IP address for the bootstrap VM when there is no DHCP server on the `baremetal` network.
97
98
<4> See the BMC addressing sections for more options.
98
-
<5> Set the path to the installation disk drive, for example, `/dev/disk/by-id/wwn-0x64cd98f04fde100024684cf3034da5c2`.
99
+
<5> To set the path to the installation disk drive, enter the kernel name of the disk. For example, `/dev/sda`.
100
+
+
101
+
[IMPORTANT]
102
+
====
103
+
Because the disk discovery order is not guaranteed, the kernel name of the disk can change across booting options for machines with multiple disks. For instance, `/dev/sda` becomes `/dev/sdb` and vice versa.
104
+
To avoid this issue, you must use persistent disk attributes, such as the disk World Wide Name (WWN). To use the disk WWN, replace the `deviceName` parameter with the `wwnWithExtension` parameter. Depending on the parameter that you use, enter the disk name, for example, `/dev/sda` or the disk WWN, for example, `"0x64cd98f04fde100024684cf3034da5c2"`. Ensure that you enter the disk WWN value within quotes so that it is used as a string value and not a hexadecimal value.
105
+
106
+
Failure to meet these requirements for the `rootDeviceHints` parameter might result in the following error:
107
+
108
+
[source,text]
109
+
----
110
+
ironic-inspector inspection failed: No disks satisfied root device hints
111
+
----
112
+
====
113
+
--
99
114
100
115
[NOTE]
101
116
====
102
-
Before {product-title} 4.12, the cluster installation program only accepted an IPv4 address or and IPv6 address for the `apiVIP` and `ingressVIP` configuration settings. In {product-title} 4.12 and later, these configuration settings are deprecated. Instead, use a list format in the `apiVIPs` and `ingressVIPs` configuration settings to specify IPv4 addresses, IPv6 addresses or both IP address formats.
117
+
Before {product-title} 4.12, the cluster installation program only accepted an IPv4 address or and IPv6 address for the `apiVIP` and `ingressVIP` configuration settings. In {product-title} 4.12 and later, these configuration settings are deprecated. Instead, use a list format in the `apiVIPs` and `ingressVIPs` configuration settings to specify IPv4 addresses, IPv6 addresses or both IP address formats.
103
118
====
104
119
105
120
. Create a directory to store the cluster configuration:
0 commit comments