From af5753d4b02c25cc746317a6141e2f20e639f9be Mon Sep 17 00:00:00 2001 From: Michele Costa Date: Thu, 28 Mar 2024 12:45:28 +0000 Subject: [PATCH] Move Partitioning docs to assisted installer onprem only section --- docs/inventory.md | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/docs/inventory.md b/docs/inventory.md index a8fa23be..de58599c 100644 --- a/docs/inventory.md +++ b/docs/inventory.md @@ -627,17 +627,6 @@ The basic network configuration of the inventory for the fully bare metal deploy bmc_address: 172.30.10.7 # ... ``` -## Additional Partition Deployment - -For OCP 4.8+ deployments you can set partitions if required on the nodes. You do this by adding the snippet below to the node definition. Please ensure you provide the correct label and size(MiB) for the additional partitions you want to create. The device can either be the drive in which RHCOS image needs to be installed or it can be any additional drive on the node that requires partitioning. In the case that the device is equal to the host's `installation_disk_path` then a partition will be added defined by `disks_rhcos_root`. All additional partitions must be added under `extra_partitions` key as per the example below. - -```yaml -disks: - - device: "{{ installation_disk_path }}" - extra_partitions: - partition_1: 1024 - partition_2: 1024 - ``` ## PXE Deployment You must have these services when using PXE deployment @@ -797,3 +786,15 @@ day2_workers: bmc_address: 172.28.11.26 mac: 3C:FD:FE:78:AB:05 ``` + +## Additional Partition Deployment + +For OCP 4.8+ deployments you can set partitions if required on the nodes. You do this by adding the snippet below to the node definition. Please ensure you provide the correct label and size(MiB) for the additional partitions you want to create. The device can either be the drive in which RHCOS image needs to be installed or it can be any additional drive on the node that requires partitioning. In the case that the device is equal to the host's `installation_disk_path` then a partition will be added defined by `disks_rhcos_root`. All additional partitions must be added under `extra_partitions` key as per the example below. + +```yaml +disks: + - device: "{{ installation_disk_path }}" + extra_partitions: + partition_1: 1024 + partition_2: 1024 + ```