Skip to content

Commit

Permalink
CI fix test vm__remove_disk - version comparison
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Cinkelj <[email protected]>
  • Loading branch information
justinc1 committed Sep 28, 2023
1 parent 75b347e commit aac140e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/targets/vm__remove_disk/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
vars:
disk_type: virtio_disk
# HyperCore 9.1.14 could remove disk from running VM
# HyperCore 9.2.13, 9.2.17 could not remove disk from running VM
expected_vm_reboot: "{{ cluster_info.record.icos_version.startswith('9.2') }}"
# HyperCore 9.2.13, 9.2.17, 9.3.1 could not remove disk from running VM
expected_vm_reboot: "{{ cluster_info.record.icos_version is version('9.2', '>=') }}"
- include_tasks: 03_remove_disk_running_with_reboot.yml
vars:
disk_type: scsi_disk
Expand Down

0 comments on commit aac140e

Please sign in to comment.