Add missing capabilities

The updates the powervm driver capabilities to include all capabilites
from nova [1].

[1] https://github.com/openstack/nova/blob/5251f18d8/nova/virt/driver.py#L124-L134

Change-Id: If6fd7d22963162f9d1558b97f8d2fe3da948fe48
This commit is contained in:
esberglu 2018-01-30 16:05:31 -06:00 committed by Eric Berglund
parent 17e8070fd1
commit 535990d270
1 changed files with 4 additions and 1 deletions

View File

@ -96,7 +96,10 @@ class PowerVMDriver(driver.ComputeDriver):
"supports_migrate_to_same_host": False,
"supports_attach_interface": True,
"supports_device_tagging": False,
"supports_extend_volume": True
"supports_tagged_attach_interface": False,
"supports_tagged_attach_volume": False,
"supports_extend_volume": True,
"supports_multiattach": False,
}
def __init__(self, virtapi):