Merge "ScaleIO: Enable multiattach for volumes"

This commit is contained in:
Zuul 2018-01-22 16:57:30 +00:00 committed by Gerrit Code Review
commit 0633bc77d4
2 changed files with 11 additions and 0 deletions

View File

@ -986,6 +986,7 @@ class ScaleIODriver(driver.VolumeDriver):
stats['consistent_group_snapshot_enabled'] = True
stats['thick_provisioning_support'] = True
stats['thin_provisioning_support'] = True
stats['multiattach'] = True
pools = []
free_capacity = 0
@ -1054,6 +1055,7 @@ class ScaleIODriver(driver.VolumeDriver):
'reserved_percentage': 0,
'thin_provisioning_support': True,
'thick_provisioning_support': True,
'multiattach': True,
'provisioned_capacity_gb': provisioned_capacity,
'max_over_subscription_ratio':
self.configuration.max_over_subscription_ratio

View File

@ -0,0 +1,9 @@
---
features:
- |
The multiattach capability has been enabled and verified
as working with the ScaleIO driver. It is the users
responsibility to add some type of exclusion (at the file
system or network file system layer) to prevent multiple
writers from corrupting data on the volume.