From f27bec29aebd0c74d0753c53e84cf7378fc5b7ac Mon Sep 17 00:00:00 2001 From: Sarah Bennert Date: Tue, 6 Feb 2024 13:18:52 -0500 Subject: [PATCH] Supermicro 1029U cluster installed (#435) Update README.md Add additional info to by-path tips --- README.md | 2 +- docs/tips-and-vars.md | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1c9a74ba..1b2b3cb1 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ The listed hardware has been used for cluster deployments successfully. Potentia | Dell r640 | Yes | Yes | Yes | | Dell fc640 | Yes | No | Yes | | Supermicro 1029p | Yes | Yes | No | -| Supermicro 1029U | No | No | Yes | +| Supermicro 1029U | Yes | No | Yes | | Supermicro 5039ms | Yes | No | Yes | **IBMcloud** diff --git a/docs/tips-and-vars.md b/docs/tips-and-vars.md index 1c62b3d8..c9e70487 100644 --- a/docs/tips-and-vars.md +++ b/docs/tips-and-vars.md @@ -292,3 +292,16 @@ worker_install_disk: /dev/disk/by-path/pci-0000:b1:00.0-nvme-1 controlplane_nvme_device: /dev/disk/by-path/pci-0000:b2:00.0-nvme-1 controlplane_etcd_on_nvme: true ``` + +**Note:** The values seen in `/dev/disk/by-path` may differ between RHEL8 and RHEL9. +If your OpenShift version is based on RHEL9 (4.13+), you should install RHEL9 on the nodes +first to ensure the paths are correct. +eg: `/dev/sda` - Seen on Supermicro 1029U +``` +RHEL8: +lrwxrwxrwx. 1 root root 9 Feb 5 19:22 pci-0000:00:11.5-ata-1 -> ../../sda + +RHEL9: +lrwxrwxrwx. 1 root root 9 Feb 5 19:22 pci-0000:00:11.5-ata-1 -> ../../sda +lrwxrwxrwx. 1 root root 9 Feb 5 19:22 pci-0000:00:11.5-ata-1.0 -> ../../sda <---- Use this one +```