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 }}"