Merge "Add ironic driver image type capabilities"

This commit is contained in:
Zuul 2019-05-10 23:22:11 +00:00 committed by Gerrit Code Review
commit f1341f6f01
1 changed files with 12 additions and 0 deletions

View File

@ -160,6 +160,18 @@ class IronicDriver(virt_driver.ComputeDriver):
"supports_attach_interface": True,
"supports_multiattach": False,
"supports_trusted_certs": False,
# Image type support flags
"supports_image_type_aki": False,
"supports_image_type_ami": False,
"supports_image_type_ari": False,
"supports_image_type_iso": False,
"supports_image_type_qcow2": True,
"supports_image_type_raw": True,
"supports_image_type_vdi": False,
"supports_image_type_vhd": False,
"supports_image_type_vhdx": False,
"supports_image_type_vmdk": False,
}
# This driver is capable of rebalancing nodes between computes.