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 4, 2024
1 parent 1b08ce5 commit 2d4ec95
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scenarios/reproducers/3-nodes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,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 2d4ec95

Please sign in to comment.