From nobody Fri Dec 19 19:15:29 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) client-ip=209.132.183.28; envelope-from=libvir-list-bounces@redhat.com; helo=mx1.redhat.com; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of redhat.com designates 209.132.183.28 as permitted sender) smtp.mailfrom=libvir-list-bounces@redhat.com; dmarc=pass(p=none dis=none) header.from=redhat.com Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by mx.zohomail.com with SMTPS id 1531845370832705.8694622155169; Tue, 17 Jul 2018 09:36:10 -0700 (PDT) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B3E7230820E6; Tue, 17 Jul 2018 16:36:07 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.20]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 5E97A5D6A5; Tue, 17 Jul 2018 16:36:07 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 00E7718037FA; Tue, 17 Jul 2018 16:36:06 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id w6HGZddA021066 for ; Tue, 17 Jul 2018 12:35:39 -0400 Received: by smtp.corp.redhat.com (Postfix) id E98E916875; Tue, 17 Jul 2018 16:35:38 +0000 (UTC) Received: from inaba.usersys.redhat.com (unknown [10.43.2.44]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8A31016878 for ; Tue, 17 Jul 2018 16:35:38 +0000 (UTC) From: Andrea Bolognani To: libvir-list@redhat.com Date: Tue, 17 Jul 2018 18:35:22 +0200 Message-Id: <20180717163528.4591-7-abologna@redhat.com> In-Reply-To: <20180717163528.4591-1-abologna@redhat.com> References: <20180717163528.4591-1-abologna@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.11.54.5 X-loop: libvir-list@redhat.com Subject: [libvirt] [jenkins-ci PATCH v3 06/12] lcitool: Implement the 'install' action X-BeenThere: libvir-list@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: Development discussions about the libvirt library & tools List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: libvir-list-bounces@redhat.com Errors-To: libvir-list-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.47]); Tue, 17 Jul 2018 16:36:10 +0000 (UTC) X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Type: text/plain; charset="utf-8" Signed-off-by: Andrea Bolognani --- guests/lcitool | 75 ++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 73 insertions(+), 2 deletions(-) diff --git a/guests/lcitool b/guests/lcitool index 2df231a..5156869 100755 --- a/guests/lcitool +++ b/guests/lcitool @@ -22,6 +22,7 @@ import fnmatch import os import random import string +import subprocess import sys import textwrap import yaml @@ -246,11 +247,17 @@ class Application: self._inventory =3D Inventory() =20 self._parser =3D argparse.ArgumentParser( + conflict_handler=3D"resolve", formatter_class=3Dargparse.RawDescriptionHelpFormatter, description=3D"libvirt CI guest management tool", epilog=3Dtextwrap.dedent(""" + common actions: + install perform unattended host installation + informational actions: hosts list all known hosts + + glob patterns are supported for HOSTS """), ) self._parser.add_argument( @@ -259,19 +266,83 @@ class Application: required=3DTrue, help=3D"action to perform (see below)", ) + self._parser.add_argument( + "-h", + metavar=3D"HOSTS", + help=3D"list of hosts to act on", + ) =20 - def _action_hosts(self): + def _action_hosts(self, _hosts): for host in self._inventory.expand_pattern("all"): print(host) =20 + def _action_install(self, hosts): + flavor =3D self._config.get_flavor() + + for host in self._inventory.expand_pattern(hosts): + facts =3D self._inventory.get_facts(host) + + # Both memory size and disk size are stored as GiB in the + # inventory, but virt-install expects the disk size in GiB + # and the memory size in *MiB*, so perform conversion here + memory_arg =3D str(int(facts["install_memory_size"]) * 1024) + + vcpus_arg =3D str(facts["install_vcpus"]) + + disk_arg =3D "size=3D{},pool=3D{},bus=3Dvirtio".format( + facts["install_disk_size"], + facts["install_storage_pool"], + ) + network_arg =3D "network=3D{},model=3Dvirtio".format( + facts["install_network"], + ) + + # preseed files must use a well-known name to be picked up by + # d-i; for kickstart files, we can use whatever name we please + # but we need to point anaconda in the right direction through + # a kernel argument + extra_arg =3D "console=3DttyS0 ks=3Dfile:/{}".format( + facts["install_config"], + ) + + cmd =3D [ + "virt-install", + "--name", host, + "--location", facts["install_url"], + "--virt-type", facts["install_virt_type"], + "--arch", facts["install_arch"], + "--machine", facts["install_machine"], + "--cpu", facts["install_cpu_model"], + "--vcpus", vcpus_arg, + "--memory", memory_arg, + "--disk", disk_arg, + "--network", network_arg, + "--graphics", "none", + "--console", "pty", + "--sound", "none", + "--initrd-inject", facts["install_config"], + "--extra-args", extra_arg, + "--wait", "0", + ] + + # Only configure autostart for the guest for the jenkins flavor + if flavor =3D=3D "jenkins": + cmd +=3D ["--autostart"] + + try: + subprocess.check_call(cmd) + except Exception: + raise Error("Failed to install '{}'".format(host)) + def run(self): cmdline =3D self._parser.parse_args() action =3D cmdline.a + hosts =3D cmdline.h =20 method =3D "_action_{}".format(action.replace("-", "_")) =20 if hasattr(self, method): - getattr(self, method).__call__() + getattr(self, method).__call__(hosts) else: raise Error("Invalid action '{}'".format(action)) =20 --=20 2.17.1 -- libvir-list mailing list libvir-list@redhat.com https://www.redhat.com/mailman/listinfo/libvir-list