We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1999f1c commit f3d4af0Copy full SHA for f3d4af0
windows/vhba_hot_add_remove/vhba_test.yml
@@ -11,8 +11,10 @@
11
vm_nvme_spec13_enabled: >-
12
{{
13
vm_hardware_version_num | int >= 21 and
14
- ((guest_os_product_type == 'server' and guest_os_build_num | int >= 20348) or
15
- (guest_os_product_type == 'client' and guest_os_build_num | int >= 22000))
+ ((guest_os_product_type == 'server' and
+ (vm_guest_id | regex_search('windows(\\d+)srvNext', '\\1'))[0] | int >= 2019) or
16
+ (guest_os_product_type == 'client' and
17
+ (vm_guest_id | regex_search('windows(\\d+)_', '\\1'))[0] | int >= 11))
18
}}
19
when:
20
- test_disk_ctrl_type == 'nvme'
0 commit comments