Skip to content

Commit 83b2894

Browse files
authored
Merge pull request #81595 from johnwilkins/OCPBUGS-36900
HCIDOCS-470: Update IPI installer docs
2 parents 0056361 + d05d06d commit 83b2894

File tree

3 files changed

+75
-0
lines changed

3 files changed

+75
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ include::modules/ipi-install-bmc-addressing-for-hpe-ilo.adoc[leveloffset=+2]
8282
// BMC addressing for Fujitsu iRMC
8383
include::modules/ipi-install-bmc-addressing-for-fujitsu-irmc.adoc[leveloffset=+2]
8484

85+
// BMC addressing for Cisco CIMC
86+
include::modules/ipi-install-bmc-addressing-for-cisco-cimc.adoc[leveloffset=+2]
87+
8588
// Root device hints
8689
include::modules/ipi-install-root-device-hints.adoc[leveloffset=+2]
8790

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
// This is included in the following assemblies:
2+
//
3+
// installing/installing_bare_metal_ipi/ipi-install-configuration-files.adoc
4+
5+
:_mod-docs-content-type: REFERENCE
6+
[id="bmc-addressing-for-cisco-cimc_{context}"]
7+
= BMC addressing for Cisco CIMC
8+
9+
The `address` field for each `bmc` entry is a URL for connecting to the {product-title} cluster nodes, including the type of controller in the URL scheme and its location on the network.
10+
11+
[source,yaml]
12+
----
13+
platform:
14+
baremetal:
15+
hosts:
16+
- name: <hostname>
17+
role: <master | worker>
18+
bmc:
19+
address: <address> <1>
20+
username: <user>
21+
password: <password>
22+
----
23+
<1> The `address` configuration setting specifies the protocol.
24+
25+
For Cisco UCS UCSX-210C-M6 hardware, Red Hat supports Cisco Integrated Management Controller (CIMC).
26+
27+
.BMC address format for Cisco CIMC
28+
[width="100%", cols="1,3", options="header"]
29+
|====
30+
|Protocol|Address Format
31+
|Redfish virtual media| `redfish-virtualmedia://<server_kvm_ip>/redfish/v1/Systems/<serial_number>`
32+
|====
33+
34+
To enable Redfish virtual media for Cisco UCS UCSX-210C-M6 hardware, use `redfish-virtualmedia://` in the `address` setting. The following example demonstrates using Redfish virtual media within the `install-config.yaml` file.
35+
36+
[source,yaml]
37+
----
38+
platform:
39+
baremetal:
40+
hosts:
41+
- name: openshift-master-0
42+
role: master
43+
bmc:
44+
address: redfish-virtualmedia://<server_kvm_ip>/redfish/v1/Systems/<serial_number>
45+
username: <user>
46+
password: <password>
47+
----
48+
49+
While it is recommended to have a certificate of authority for the out-of-band management addresses, you must include `disableCertificateVerification: True` in the `bmc` configuration if using self-signed certificates. The following example demonstrates a Redfish configuration by using the `disableCertificateVerification: True` configuration parameter within the `install-config.yaml` file.
50+
51+
[source,yaml]
52+
----
53+
platform:
54+
baremetal:
55+
hosts:
56+
- name: openshift-master-0
57+
role: master
58+
bmc:
59+
address: redfish-virtualmedia://<server_kvm_ip>/redfish/v1/Systems/<serial_number>
60+
username: <user>
61+
password: <password>
62+
disableCertificateVerification: True
63+
----

modules/ipi-install-firmware-requirements-for-installing-with-virtual-media.adoc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,12 @@ Red Hat does not test every combination of firmware, hardware, or other third-pa
3131
| 13th Generation .2+| iDRAC 8 | v2.75.75.75 or later
3232

3333
|====
34+
35+
36+
.Firmware compatibility for Cisco UCS hardware with Redfish virtual media
37+
[cols="1,1,1",options="header"]
38+
|====
39+
| Model | Management | Firmware versions
40+
| UCS UCSX-210C-M6 | CIMC | 5.2(2) or later
41+
42+
|====

0 commit comments

Comments
 (0)