Skip to content

Commit f1eedce

Browse files
authored
Merge pull request #45853 from johnwilkins/TELCODOCS-623.2
TELCODOCS-623: Add RAID and BIOS to control plane nodes for Fujitsu.
2 parents 4b329ac + 4baeb31 commit f1eedce

File tree

4 files changed

+58
-48
lines changed

4 files changed

+58
-48
lines changed

installing/installing_bare_metal_ipi/ipi-install-installation-workflow.adoc

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ include::modules/ipi-install-modifying-install-config-for-dual-stack-network.ado
4242
include::modules/ipi-install-configuring-host-network-interfaces-in-the-install-config.yaml-file.adoc[leveloffset=+2]
4343

4444
[role="_additional-resources"]
45-
== Additional resources
45+
.Additional resources
4646

4747
* xref:../../release_notes/ocp-4-11-release-notes.adoc#ocp-4-11-known-issues[OpenShift Container Platform 4.11 release notes]
4848

@@ -59,9 +59,19 @@ include::modules/ipi-install-configure-network-components-to-run-on-the-control-
5959

6060
include::modules/ipi-install-deploying-routers-on-worker-nodes.adoc[leveloffset=+2]
6161

62-
include::modules/ipi-install-configuring-bios-for-worker-node.adoc[leveloffset=+2]
62+
include::modules/ipi-install-configuring-the-bios.adoc[leveloffset=+2]
63+
64+
[role="_additional-resources"]
65+
.Additional resources
66+
67+
* xref:../../post_installation_configuration/bare-metal-configuration.adoc#post-install-bare-metal-configuration[Bare metal configuration]
68+
69+
include::modules/ipi-install-configuring-the-raid.adoc[leveloffset=+2]
70+
71+
[role="_additional-resources"]
72+
.Additional resources
6373

64-
include::modules/ipi-install-configuring-raid-for-worker-node.adoc[leveloffset=+2]
74+
* xref:../../post_installation_configuration/bare-metal-configuration.adoc#post-install-bare-metal-configuration[Bare metal configuration]
6575

6676
include::modules/ipi-install-creating-a-disconnected-registry.adoc[leveloffset=+1]
6777

modules/ipi-install-configuring-bios-for-worker-node.adoc

Lines changed: 0 additions & 37 deletions
This file was deleted.
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// Module included in the following assemblies:
2+
//
3+
// * installing/installing_bare_metal_ipi/ipi-install-installation-workflow.adoc
4+
5+
:_content-type: PROCEDURE
6+
[id="configuring-the-bios_{context}"]
7+
= (Optional) Configuring the BIOS
8+
9+
The following procedure configures the BIOS during the installation process.
10+
11+
.Procedure
12+
. Create the manifests.
13+
14+
. Modify the `BareMetalHost` resource file corresponding to the node:
15+
+
16+
[source,terminal]
17+
----
18+
$ vim clusterconfigs/openshift/99_openshift-cluster-api_hosts-*.yaml
19+
----
20+
21+
. Add the BIOS configuration to the `spec` section of the `BareMetalHost` resource:
22+
+
23+
[source,yaml]
24+
----
25+
spec:
26+
firmware:
27+
simultaneousMultithreadingEnabled: true
28+
sriovEnabled: true
29+
virtualizationEnabled: true
30+
----
31+
+
32+
[NOTE]
33+
====
34+
Red Hat supports three BIOS configurations. Only servers with BMC type `irmc` are supported. Other types of servers are currently not supported.
35+
====
36+
37+
. Create the cluster.

modules/ipi-install-configuring-raid-for-worker-node.adoc renamed to modules/ipi-install-configuring-the-raid.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
// Module included in the following assemblies:
22
//
3-
// * installing/installing_bare_metal_ipi/ipi-install-configuration-files.adoc
3+
// * installing/installing_bare_metal_ipi/ipi-install-installation-workflow.adoc
44

55
:_content-type: PROCEDURE
6-
[id="configuring-raid-for-worker-node_{context}"]
7-
= (Optional) Configuring RAID for worker nodes
6+
[id="configuring-the-raid_{context}"]
7+
= (Optional) Configuring the RAID
88

9-
The following procedure configures a redundant array of independent disks (RAID) for the worker node during the installation process.
9+
The following procedure configures a redundant array of independent disks (RAID) during the installation process.
1010

1111
[NOTE]
1212
====
@@ -18,19 +18,19 @@ The following procedure configures a redundant array of independent disks (RAID)
1818

1919
. Create the manifests.
2020

21-
. Modify the BMH (Bare Metal Host) file corresponding to the worker:
21+
. Modify the `BareMetalHost` resource corresponding to the node:
2222
+
2323
[source,terminal]
2424
----
25-
$ vim clusterconfigs/openshift/99_openshift-cluster-api_hosts-3.yaml
25+
$ vim clusterconfigs/openshift/99_openshift-cluster-api_hosts-*.yaml
2626
----
2727
+
2828
[NOTE]
2929
====
3030
Because nodes with BMC type `irmc` do not support software RAID, the following RAID configuration uses hardware RAID as an example.
3131
====
3232
+
33-
.. If you added a specific RAID configuration to the `spec` section, this causes the worker node to delete the original RAID configuration in the `preparing` phase and perform a specified configuration on the RAID. For example:
33+
.. If you added a specific RAID configuration to the `spec` section, this causes the node to delete the original RAID configuration in the `preparing` phase and perform a specified configuration on the RAID. For example:
3434
+
3535
[source,yaml]
3636
----
@@ -45,7 +45,7 @@ spec:
4545
----
4646
<1> `level` is a required field, and the others are optional fields.
4747
+
48-
.. If you added an empty RAID configuration to the `spec` section, this empty configuration causes the worker node to delete the original RAID configuration during the `preparing` phase, but does not perform a new configuration. For example:
48+
.. If you added an empty RAID configuration to the `spec` section, the empty configuration causes the node to delete the original RAID configuration during the `preparing` phase, but does not perform a new configuration. For example:
4949
+
5050
[source,yaml]
5151
----

0 commit comments

Comments
 (0)