-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
jobs.py: Add support to filter VMs based on host version
VMs listed in vm_data.py can now be specified with the version of the XCP-ng host they support. i.e. PV VMs should be run only on 8.2 hosts. The VMS dictionary structure remains the same. If you want to specify the host version for a particular VM, use a dictionary entry instead of the VM filename plain string as: {"vm_filename.xva": "8.2.*"} The host version matched using re.mtach(), so valid patterns can be "8\.2\.", "8\.[23]\.", or "(9\.0|8\.2)". See vm_data.py-dist for more details. Signed-off-by: Thierry Escande <[email protected]>
- Loading branch information
Showing
2 changed files
with
74 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters