From c7468b0bad407c7fdb293a49e9c6c9ec16274a96 Mon Sep 17 00:00:00 2001 From: ericxiett Date: Thu, 28 Nov 2019 02:08:44 +0000 Subject: [PATCH] Add 'TYPE_PLOOP' image type. This patch adds missing image type 'TYPE_PLOOP' for Virtuozzo. Change-Id: Ia9c7b83b7b163ce73e980923f48bc34045ff92be Closes-Bug: #1854235 --- os_traits/compute/image.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/os_traits/compute/image.py b/os_traits/compute/image.py index 01000c0..2a50d35 100644 --- a/os_traits/compute/image.py +++ b/os_traits/compute/image.py @@ -13,7 +13,7 @@ # under the License. # This is fed from the list at -# https://docs.openstack.org/image-guide/image-formats.html#disk-formats +# https://docs.openstack.org/glance/latest/user/formats.html#disk-format # and should be kept up to date with same. TRAITS = [ # Amazon kernel, machine, and ramdisk images @@ -39,4 +39,7 @@ TRAITS = [ # Native format for VMware 'TYPE_VMDK', + + # Native format for Virtuozzo + 'TYPE_PLOOP', ]