mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
50 lines
2.1 KiB
Plaintext
50 lines
2.1 KiB
Plaintext
// This is included in the following assemblies:
|
|
//
|
|
// installing/installing_bare_metal/ipi/ipi-install-configuration-files.adoc
|
|
|
|
:_mod-docs-content-type: REFERENCE
|
|
[id="bmc-addressing-for-cisco-cimc_{context}"]
|
|
= BMC addressing for Cisco Integrated Management Controller
|
|
|
|
[role="_abstract"]
|
|
You can connect to a Cisco Integrated Management Controller (CIMC) system using the Redfish virtual media protocol. 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.
|
|
|
|
For Cisco UCS C-Series and X-Series servers, Red Hat supports Cisco Integrated Management Controller (CIMC).
|
|
|
|
[width="100%", cols="1,3", options="header"]
|
|
|====
|
|
|Protocol|Address Format
|
|
|Redfish virtual media| `redfish-virtualmedia://<server_kvm_ip>/redfish/v1/Systems/<serial_number>`
|
|
|====
|
|
|
|
To enable Redfish virtual media for Cisco UCS C-Series and X-Series servers, use `redfish-virtualmedia://` in the `address` setting. The following example demonstrates using Redfish virtual media within the `install-config.yaml` file.
|
|
|
|
[source,yaml]
|
|
----
|
|
platform:
|
|
baremetal:
|
|
hosts:
|
|
- name: openshift-master-0
|
|
role: master
|
|
bmc:
|
|
address: redfish-virtualmedia://<server_kvm_ip>/redfish/v1/Systems/<serial_number>
|
|
username: <user>
|
|
password: <password>
|
|
----
|
|
|
|
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.
|
|
|
|
[source,yaml]
|
|
----
|
|
platform:
|
|
baremetal:
|
|
hosts:
|
|
- name: openshift-master-0
|
|
role: master
|
|
bmc:
|
|
address: redfish-virtualmedia://<server_kvm_ip>/redfish/v1/Systems/<serial_number>
|
|
username: <user>
|
|
password: <password>
|
|
disableCertificateVerification: True
|
|
----
|