From 335804bbff88f54b87cfd4328eeb2645954c618f Mon Sep 17 00:00:00 2001 From: Matthew Burket Date: Wed, 9 Sep 2026 16:18:16 -0500 Subject: [PATCH 1/2] Update install_vm.py to reflect that RHEL 10 has been released --- tests/install_vm.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tests/install_vm.py b/tests/install_vm.py index 5b5836766c4e..cfebd90c951c 100755 --- a/tests/install_vm.py +++ b/tests/install_vm.py @@ -14,23 +14,24 @@ "centos9", "rhel8", "rhel9", + "rhel10", ] # put here any unreleased distro in development that needs to be tested # and any working osinfo known to be used by default when installating it UNRELEASED_DISTROS_AND_OSINFO = { - "rhel10": "rhel9-unknown" } DISTRO_URL = { "fedora": "https://download.fedoraproject.org/pub/fedora/linux/releases/42/Everything/x86_64/os", - "centos8": "http://mirror.centos.org/centos/8-stream/BaseOS/x86_64/os/", "centos9": "http://mirror.stream.centos.org/9-stream/BaseOS/x86_64/os/", + "centos10": "http://mirror.centos.org/centos/10-stream/BaseOS/x86_64/os/", + } DISTRO_EXTRA_REPO = { - "centos8": "http://mirror.centos.org/centos/8-stream/AppStream/x86_64/os/", - "centos9": "http://mirror.stream.centos.org/9-stream/AppStream/x86_64/os/", + "centos9": "http://mirror.centos.org/centos/9-stream/AppStream/x86_64/os/", + "centos10": "http://mirror.stream.centos.org/10-stream/AppStream/x86_64/os/", } From dbcf1afbaf5809bd7e11dd5427620c2290bdff68 Mon Sep 17 00:00:00 2001 From: Matthew Burket Date: Wed, 9 Sep 2026 16:19:43 -0500 Subject: [PATCH 2/2] Adjust help text install_vm to add units I had to look at the source code for RAM and figured that being clear for RAM isn't a bad idea. --- tests/install_vm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/install_vm.py b/tests/install_vm.py index cfebd90c951c..bdbe93ad621b 100755 --- a/tests/install_vm.py +++ b/tests/install_vm.py @@ -85,7 +85,7 @@ def parse_args(): "--disk-size", dest="disk_size", default=20, - help="Size of the VM qcow2 disk, default is 20 GiB (ignored when --disk is specified).", + help="Size (in GiB) of the VM qcow2 disk, default is 20 GiB (ignored when --disk is specified).", ) parser.add_argument( "--disk", @@ -97,7 +97,7 @@ def parse_args(): dest="ram", default=3072, type=int, - help="Amount of RAM configured for the VM.", + help="Amount of RAM (in MiB) configured for the VM, default is 3072 MiB.", ) parser.add_argument( "--cpu",