Add a vmdk compose type.
This is similar to the AMI type, but also adds open-vm-tools and does not do
anything special to the partitioning
(cherry picked from commit 1056bfc25b
)
Resolves: rhbz#1628646
This commit is contained in:
parent
1c1f97ad70
commit
1a23dc0f2b
@ -41,7 +41,7 @@ keep track of the build. You can also cancel the build if needed.
|
|||||||
|
|
||||||
The available types of images is displayed by ``composer-cli compose types``.
|
The available types of images is displayed by ``composer-cli compose types``.
|
||||||
Currently this consists of: ami, ext4-filesystem, live-iso, partitioned-disk,
|
Currently this consists of: ami, ext4-filesystem, live-iso, partitioned-disk,
|
||||||
qcow2, tar, vhd
|
qcow2, tar, vhd, vmdk
|
||||||
|
|
||||||
Monitor the build status
|
Monitor the build status
|
||||||
------------------------
|
------------------------
|
||||||
|
41
share/composer/vmdk.ks
Normal file
41
share/composer/vmdk.ks
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
# Lorax Composer vmdk kickstart template
|
||||||
|
|
||||||
|
# Firewall configuration
|
||||||
|
firewall --enabled
|
||||||
|
|
||||||
|
# NOTE: The root account is locked by default
|
||||||
|
# Network information
|
||||||
|
network --bootproto=dhcp --onboot=on --activate
|
||||||
|
# System keyboard
|
||||||
|
keyboard --xlayouts=us --vckeymap=us
|
||||||
|
# System language
|
||||||
|
lang en_US.UTF-8
|
||||||
|
# SELinux configuration
|
||||||
|
selinux --enforcing
|
||||||
|
# Installation logging level
|
||||||
|
logging --level=info
|
||||||
|
# Shutdown after installation
|
||||||
|
shutdown
|
||||||
|
# System timezone
|
||||||
|
timezone US/Eastern
|
||||||
|
# System bootloader configuration
|
||||||
|
bootloader --location=mbr
|
||||||
|
|
||||||
|
# Basic services
|
||||||
|
services --enabled=sshd,chronyd,vmtoolsd
|
||||||
|
|
||||||
|
%post
|
||||||
|
# Remove random-seed
|
||||||
|
rm /var/lib/systemd/random-seed
|
||||||
|
%end
|
||||||
|
|
||||||
|
%packages
|
||||||
|
kernel
|
||||||
|
-dracut-config-rescue
|
||||||
|
|
||||||
|
grub2
|
||||||
|
|
||||||
|
chrony
|
||||||
|
open-vm-tools
|
||||||
|
|
||||||
|
# NOTE lorax-composer will add the blueprint packages below here, including the final %end
|
@ -591,6 +591,28 @@ def compose_args(compose_type):
|
|||||||
"app_template": None,
|
"app_template": None,
|
||||||
"app_file": None,
|
"app_file": None,
|
||||||
},
|
},
|
||||||
|
"vmdk": {"make_iso": False,
|
||||||
|
"make_disk": True,
|
||||||
|
"make_fsimage": False,
|
||||||
|
"make_appliance": False,
|
||||||
|
"make_ami": False,
|
||||||
|
"make_tar": False,
|
||||||
|
"make_pxe_live": False,
|
||||||
|
"make_ostree_live": False,
|
||||||
|
"make_oci": False,
|
||||||
|
"make_vagrant": False,
|
||||||
|
"ostree": False,
|
||||||
|
"live_rootfs_keep_size": False,
|
||||||
|
"live_rootfs_size": 0,
|
||||||
|
"image_type": "vmdk",
|
||||||
|
"qemu_args": [],
|
||||||
|
"image_name": "disk.vmdk",
|
||||||
|
"fs_label": "",
|
||||||
|
"image_only": True,
|
||||||
|
"app_name": None,
|
||||||
|
"app_template": None,
|
||||||
|
"app_file": None,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
return _MAP[compose_type]
|
return _MAP[compose_type]
|
||||||
|
|
||||||
|
@ -808,7 +808,7 @@ class ServerTestCase(unittest.TestCase):
|
|||||||
data = json.loads(resp.data)
|
data = json.loads(resp.data)
|
||||||
self.assertNotEqual(data, None)
|
self.assertNotEqual(data, None)
|
||||||
self.assertEqual(data["status"], False, "Failed to fail to start test compose: %s" % data)
|
self.assertEqual(data["status"], False, "Failed to fail to start test compose: %s" % data)
|
||||||
self.assertEqual(data["errors"], [{"id": BAD_COMPOSE_TYPE, "msg": "Invalid compose type (snakes), must be one of ['ami', 'ext4-filesystem', 'live-iso', 'partitioned-disk', 'qcow2', 'tar', 'vhd']"}],
|
self.assertEqual(data["errors"], [{"id": BAD_COMPOSE_TYPE, "msg": "Invalid compose type (snakes), must be one of ['ami', 'ext4-filesystem', 'live-iso', 'partitioned-disk', 'qcow2', 'tar', 'vhd', 'vmdk']"}],
|
||||||
"Failed to get errors: %s" % data)
|
"Failed to get errors: %s" % data)
|
||||||
|
|
||||||
def test_compose_03_status_fail(self):
|
def test_compose_03_status_fail(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user