Skip to content

Commit

Permalink
Merge "Add zvm driver image type capabilities"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and openstack-gerrit committed May 15, 2019
2 parents 3de2963 + 8eb53f5 commit 3ec30ea
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions nova/virt/zvm/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,19 @@

class ZVMDriver(driver.ComputeDriver):
"""z/VM implementation of ComputeDriver."""
capabilities = {
# 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": False,
"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,
}

def __init__(self, virtapi):
super(ZVMDriver, self).__init__(virtapi)
Expand Down

0 comments on commit 3ec30ea

Please sign in to comment.