5 # Copyright 2018 Red Hat Inc.
8 # Fam Zheng <famz@redhat.com>
10 # This code is licensed under the GPL version 2 or later. See
11 # the COPYING file in the top-level directory.
20 class CentosVM(basevm
.BaseVM
):
26 export SRC_ARCHIVE=/dev/vdb;
27 sudo chmod a+r $SRC_ARCHIVE;
29 make docker-test-block@centos7 V={verbose} J={jobs};
30 make docker-test-quick@centos7 V={verbose} J={jobs};
31 make docker-test-mingw@fedora V={verbose} J={jobs};
34 def _gen_cloud_init_iso(self
):
36 mdata
= open(os
.path
.join(cidir
, "meta-data"), "w")
37 mdata
.writelines(["instance-id: centos-vm-0\n",
38 "local-hostname: centos-guest\n"])
40 udata
= open(os
.path
.join(cidir
, "user-data"), "w")
41 udata
.writelines(["#cloud-config\n",
44 " root:%s\n" % self
.ROOT_PASS
,
45 " %s:%s\n" % (self
.GUEST_USER
, self
.GUEST_PASS
),
48 " - name: %s\n" % self
.GUEST_USER
,
49 " sudo: ALL=(ALL) NOPASSWD:ALL\n",
50 " ssh-authorized-keys:\n",
51 " - %s\n" % basevm
.SSH_PUB_KEY
,
53 " ssh-authorized-keys:\n",
54 " - %s\n" % basevm
.SSH_PUB_KEY
,
55 "locale: en_US.UTF-8\n"])
57 subprocess
.check_call(["genisoimage", "-output", "cloud-init.iso",
58 "-volid", "cidata", "-joliet", "-rock",
59 "user-data", "meta-data"],
61 stdin
=self
._devnull
, stdout
=self
._stdout
,
63 return os
.path
.join(cidir
, "cloud-init.iso")
65 def build_image(self
, img
):
66 cimg
= self
._download
_with
_cache
("https://cloud.centos.org/centos/7/images/CentOS-7-x86_64-GenericCloud-1802.qcow2.xz")
67 img_tmp
= img
+ ".tmp"
68 subprocess
.check_call(["cp", "-f", cimg
, img_tmp
+ ".xz"])
69 subprocess
.check_call(["xz", "-df", img_tmp
+ ".xz"])
70 subprocess
.check_call(["qemu-img", "resize", img_tmp
, "50G"])
71 self
.boot(img_tmp
, extra_args
= ["-cdrom", self
._gen
_cloud
_init
_iso
()])
73 self
.ssh_root_check("touch /etc/cloud/cloud-init.disabled")
74 self
.ssh_root_check("yum update -y")
75 self
.ssh_root_check("yum install -y docker make git")
76 self
.ssh_root_check("systemctl enable docker")
77 self
.ssh_root("poweroff")
79 if os
.path
.exists(img
):
81 os
.rename(img_tmp
, img
)
84 if __name__
== "__main__":
85 sys
.exit(basevm
.main(CentosVM
))