Skip to content

Commit

Permalink
Make compute VMs specs configurable for 3-nodes scenario
Browse files Browse the repository at this point in the history
Replicate what was made for the va-hci scenario.
  • Loading branch information
mandre committed Jun 5, 2024
1 parent c3650ee commit 1c3f0f6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions scenarios/reproducers/3-nodes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ cifmw_root_partition_id: >-
}}
cifmw_libvirt_manager_compute_amount: 1
cifmw_libvirt_manager_compute_disksize: 50
cifmw_libvirt_manager_compute_memory: 8
cifmw_libvirt_manager_compute_cpus: 4
cifmw_libvirt_manager_configuration:
vms:
crc:
Expand All @@ -42,9 +45,9 @@ cifmw_libvirt_manager_configuration:
sha256_image_name: "{{ cifmw_discovered_hash }}"
image_local_dir: "{{ cifmw_basedir }}/images/"
disk_file_name: "centos-stream-9.qcow2"
disksize: 50
memory: 8
cpus: 4
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 }}"
nets:
- public
- osp_trunk
Expand Down

0 comments on commit 1c3f0f6

Please sign in to comment.