Specify snapshot size when creating volume

To avoid volume creation failures due to the default size being
insuficient, specify the snapshot size when creating a volume
from a snapshot.

Closes-Bug: #1645816

Change-Id: Ib609bac7ab331a7ddf90e3d9147547658ec1b0f7
This commit is contained in:
Nuno Santos 2016-11-17 12:32:53 -05:00
parent e2a1568470
commit da89962266
1 changed files with 4 additions and 1 deletions

View File

@ -148,10 +148,13 @@ class TestVolumeBootPattern(manager.ScenarioTest):
# create a 3rd instance from snapshot
LOG.info("Creating third instance from snapshot: %s" % snapshot['id'])
volume = self.create_volume(snapshot_id=snapshot['id'])
volume = self.create_volume(snapshot_id=snapshot['id'],
size=snapshot['size'])
LOG.info("Booting third instance from snapshot")
server_from_snapshot = (
self._boot_instance_from_volume(volume['id'],
keypair, security_group))
LOG.info("Booted third instance %s", server_from_snapshot)
# check the content of written file
LOG.info("Logging into third instance to get timestamp: %s" %