summaryrefslogtreecommitdiff
path: root/boto/ec2/blockdevicemapping.py
Commit message (Collapse)AuthorAgeFilesLines
* Avoid hash randomization here, too.Toby Burress2013-07-291-1/+5
| | | | | Use an OrderedDict because we may want items coming out in the same order they went in.
* 1. Removed invalid ".Ebs." from the "NoDevice" parameter.Eric Smalling2013-02-151-12/+13
| | | | | 2. If "NoDevice" is needed, will no longer list any "Ebs" type parameters as they were causing AWS to launch instances with no root device at all (even if a 3nd block device was defined). 3. Removed "true" value from ".NoDevice" parameter.
* Merging Provisioned IOPs branch and resolving some conflicts.Mitch Garnaat2012-08-011-8/+23
|\
| * Updates for provisioned IOPS.Mitch Garnaat2012-06-051-8/+23
| |
* | add BlockDeviceTypeTestsShawn Smith2012-06-161-4/+1
|/
* Adding short example for specifying block device map when starting an instance.dherbst2012-02-251-0/+17
|
* Adds keyword arguments for members of the BlockDeviceType object.Eddie Hebert2011-09-071-9/+18
| | | | | | | | | | | | | | | | | | | | | | | | So that block devices type can be specified more concisely, while maintaining the same defaults that were previously set in the init. e.g., this patch allows: block_device_map = { '/dev/sdb': BlockDeviceType(ephemeral_name='ephemeral0'), '/dev/sdc': BlockDeviceType(ephemeral_name='ephemeral1') } instead of: sdb = BlockDeviceType() sdb.ephemeral_name = 'ephemeral0' sdc = BlockDeviceType() sdc.ephemeral_name = 'ephemeral1' block_device_map = { '/dev/sdb': sdb '/dev/sdc': sdc }
* small fix to handling of the dreaded BlockDeviceMapping data structure. ↵Mitch Garnaat2011-06-101-1/+1
| | | | This fix GoogleCode issue 305 and is also part of the fix for LP 795395 (euca2ools).
* Added support for NoDevice in RunInstances's block device mappingDmitry Konishchev2010-12-171-0/+5
|
* Tweaks to the earlier changes to enable control of ephemeral drives in ↵Mitch.Garnaat2010-02-121-12/+16
| | | | BlockDeviceMapping.
* Add virtual_name attribute to EBSBlockDeviceType to allow ephemeral drives ↵Mitch.Garnaat2010-02-121-6/+11
| | | | to be attached via BlockDeviceMapping.
* Better fix for issue 310.Mitch.Garnaat2009-12-271-2/+2
|
* Fixed a bug introduced in r1404. Fixes issue 310.Mitch.Garnaat2009-12-271-1/+1
|
* Initial support for Spot Instances. Still rough around the edges.Mitch.Garnaat2009-12-141-2/+2
|
* Initial support for Boot From EBS.Mitch.Garnaat2009-12-041-0/+89