From 1c8e38987a1595b81763a798a9a0eace24873bab Mon Sep 17 00:00:00 2001 From: Sofer Athlan-Guyot Date: Tue, 16 Dec 2025 14:03:22 +0100 Subject: [PATCH] Enable Mixed RHEL for va-hci OCP and Compute Nodes We have introduced two new variables, `cifmw_compute_image_url` and `cifmw_compute_hash`, to enable selecting a different image for the compute nodes and OCP cluster. This change supports testing updates after adoption, as the compute nodes remain on version 9.2 post-adoption. Part of: (OSPRH-22469)[https://issues.redhat.com/browse/OSPRH-22469] --- scenarios/reproducers/va-hci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scenarios/reproducers/va-hci.yml b/scenarios/reproducers/va-hci.yml index ae40dc1f91..047edef500 100644 --- a/scenarios/reproducers/va-hci.yml +++ b/scenarios/reproducers/va-hci.yml @@ -70,10 +70,10 @@ cifmw_libvirt_manager_configuration: uefi: "{{ cifmw_use_uefi }}" root_part_id: "{{ cifmw_root_partition_id }}" amount: "{{ [cifmw_libvirt_manager_compute_amount|int, 3] | max }}" - image_url: "{{ cifmw_discovered_image_url }}" - sha256_image_name: "{{ cifmw_discovered_hash }}" + image_url: "{{ cifmw_compute_image_url | default(cifmw_discovered_image_url) }}" + sha256_image_name: "{{ cifmw_compute_hash | default(cifmw_discovered_hash) }}" image_local_dir: "{{ cifmw_basedir }}/images/" - disk_file_name: "base-os.qcow2" + disk_file_name: "{{ cifmw_compute_disk_file_name | default('base-os.qcow2') }}" disksize: "{{ [cifmw_libvirt_manager_compute_disksize|int, 50] | max }}" memory: "{{ [cifmw_libvirt_manager_compute_memory|int, 8] | max }}" cpus: "{{ [cifmw_libvirt_manager_compute_cpus|int, 4] | max }}"