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
Remove reference to BM control plane node for OpenStack
The doc explicitly said that BM control plane nodes were supported on
OpenStack platform while it's not. QE don't test it either.
We do however support BM compute nodes.
Related to OCPBUGS-22683.
Copy file name to clipboardExpand all lines: modules/installation-osp-deploying-bare-metal-machines.adoc
+9-19Lines changed: 9 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ endif::[]
14
14
If you want your cluster to use bare metal machines, modify the
15
15
ifdef::osp-ipi[`install-config.yaml`]
16
16
ifndef::osp-ipi[`inventory.yaml`]
17
-
file. Your cluster can have both control plane and compute machines running on bare metal, or just compute machines.
17
+
file. Your cluster can have compute machines running on bare metal.
18
18
19
19
[NOTE]
20
20
====
@@ -50,37 +50,29 @@ endif::osp-ipi[]
50
50
51
51
ifdef::osp-ipi[]
52
52
. In the `install-config.yaml` file, edit the flavors for machines:
53
-
.. If you want to use bare-metal control plane machines, change the value of `controlPlane.platform.openstack.type` to a bare metal flavor.
54
53
.. Change the value of `compute.platform.openstack.type` to a bare metal flavor.
55
-
.. If you want to deploy your machines on a pre-existing network, change the value of `platform.openstack.machinesSubnet` to the {rh-openstack} subnet UUID of the network. Control plane and compute machines must use the same subnet.
54
+
.. If you want to deploy your machines on a pre-existing network, change the value of `platform.openstack.machinesSubnet` to the {rh-openstack} subnet UUID of the network.
56
55
+
57
56
.An example bare metal `install-config.yaml` file
58
57
[source,yaml]
59
58
----
60
-
controlPlane:
61
-
platform:
62
-
openstack:
63
-
type: <bare_metal_control_plane_flavor> <1>
64
-
...
65
-
66
59
compute:
67
60
- architecture: amd64
68
61
hyperthreading: Enabled
69
62
name: worker
70
63
platform:
71
64
openstack:
72
-
type: <bare_metal_compute_flavor> <2>
65
+
type: <bare_metal_compute_flavor> <1>
73
66
replicas: 3
74
67
...
75
68
76
69
platform:
77
70
openstack:
78
-
machinesSubnet: <subnet_UUID> <3>
71
+
machinesSubnet: <subnet_UUID> <2>
79
72
...
80
73
----
81
-
<1> If you want to have bare-metal control plane machines, change this value to a bare metal flavor.
82
-
<2> Change this value to a bare metal flavor to use for compute machines.
83
-
<3> If you want to use a pre-existing network, change this value to the UUID of the {rh-openstack} subnet.
74
+
<1> Change this value to a bare metal flavor to use for compute machines.
75
+
<2> If you want to use a pre-existing network, change this value to the UUID of the {rh-openstack} subnet.
84
76
85
77
86
78
Use the updated `install-config.yaml` file to complete the installation process.
@@ -90,7 +82,6 @@ endif::osp-ipi[]
90
82
91
83
ifndef::osp-ipi[]
92
84
. In the `inventory.yaml` file, edit the flavors for machines:
93
-
.. If you want to use bare-metal control plane machines, change the value of `os_flavor_master` to a bare metal flavor.
94
85
.. Change the value of `os_flavor_worker` to a bare metal flavor.
95
86
+
96
87
.An example bare metal `inventory.yaml` file
@@ -104,14 +95,13 @@ all:
104
95
105
96
# User-provided values
106
97
os_subnet_range: '10.0.0.0/16'
107
-
os_flavor_master: 'my-bare-metal-flavor' <1>
108
-
os_flavor_worker: 'my-bare-metal-flavor' <2>
98
+
os_flavor_master: 'my-vm-flavor'
99
+
os_flavor_worker: 'my-bare-metal-flavor' <1>
109
100
os_image_rhcos: 'rhcos'
110
101
os_external_network: 'external'
111
102
...
112
103
----
113
-
<1> If you want to have bare-metal control plane machines, change this value to a bare metal flavor.
114
-
<2> Change this value to a bare metal flavor to use for compute machines.
104
+
<1> Change this value to a bare metal flavor to use for compute machines.
115
105
116
106
Use the updated `inventory.yaml` file to complete the installation process.
117
107
Machines that are created during deployment use the flavor that you
0 commit comments