From 2c11a1723a1b21782d209180172970871365d8ad Mon Sep 17 00:00:00 2001 From: Luca Miccini Date: Sat, 16 May 2026 08:11:40 +0200 Subject: [PATCH] [multiple] Add LVMS support to dt-vhosts-compact and dt-sharded-compact Add 3 extra disks (50G each) to OCP master nodes and configure LVMS using /dev/vda, /dev/vdb, /dev/vdc, following the same pattern used by other compact OCP scenarios (va-multi, dt-nfv-ovs-dpdk-sriov-hci). This replaces the default ci_local_storage with the LVMS operator for dynamic local storage provisioning. Signed-Off-By: Luca Miccini --- scenarios/reproducers/dt-sharded-compact.yml | 9 +++++++++ scenarios/reproducers/dt-vhosts-compact.yml | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/scenarios/reproducers/dt-sharded-compact.yml b/scenarios/reproducers/dt-sharded-compact.yml index 686dd3e30..29dec2c6a 100644 --- a/scenarios/reproducers/dt-sharded-compact.yml +++ b/scenarios/reproducers/dt-sharded-compact.yml @@ -263,6 +263,8 @@ cifmw_libvirt_manager_configuration: image_local_dir: "{{ cifmw_basedir }}/images/" disk_file_name: "ocp_master" disksize: "100" + extra_disks_num: 3 + extra_disks_size: "50G" cpus: 16 memory: 64 root_part_id: 4 @@ -320,3 +322,10 @@ cifmw_ceph_daemons_layout: ceph_nfs_enabled: true cifmw_deploy_obs: true + +# Set Logical Volume Manager Storage by default for local storage +cifmw_use_lvms: true +cifmw_lvms_disk_list: + - /dev/vda + - /dev/vdb + - /dev/vdc diff --git a/scenarios/reproducers/dt-vhosts-compact.yml b/scenarios/reproducers/dt-vhosts-compact.yml index 773935a6e..5dbf66e65 100644 --- a/scenarios/reproducers/dt-vhosts-compact.yml +++ b/scenarios/reproducers/dt-vhosts-compact.yml @@ -263,6 +263,8 @@ cifmw_libvirt_manager_configuration: image_local_dir: "{{ cifmw_basedir }}/images/" disk_file_name: "ocp_master" disksize: "100" + extra_disks_num: 3 + extra_disks_size: "50G" cpus: 16 memory: 64 root_part_id: 4 @@ -320,3 +322,10 @@ cifmw_ceph_daemons_layout: ceph_nfs_enabled: true cifmw_deploy_obs: true + +# Set Logical Volume Manager Storage by default for local storage +cifmw_use_lvms: true +cifmw_lvms_disk_list: + - /dev/vda + - /dev/vdb + - /dev/vdc