Updated Branches: refs/heads/trunk 0841c5bf6 -> 77eae241e
Update disk size information for some i2. instance types in the EC2 driver. Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/77eae241 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/77eae241 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/77eae241 Branch: refs/heads/trunk Commit: 77eae241e40d2741533cb8f9c74815d7167889ff Parents: 0841c5b Author: Tomaz Muraus <[email protected]> Authored: Thu Jan 16 16:49:04 2014 +0100 Committer: Tomaz Muraus <[email protected]> Committed: Thu Jan 16 16:49:04 2014 +0100 ---------------------------------------------------------------------- libcloud/compute/drivers/ec2.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/77eae241/libcloud/compute/drivers/ec2.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py index b76699f..914e8a3 100644 --- a/libcloud/compute/drivers/ec2.py +++ b/libcloud/compute/drivers/ec2.py @@ -243,14 +243,14 @@ INSTANCE_TYPES = { 'id': 'i2.4xlarge', 'name': 'High Storage Optimized Quadruple Large Instance', 'ram': 124928, - 'disk': 1600, + 'disk': 3200, 'bandwidth': None }, 'i2.8xlarge': { 'id': 'i2.8xlarge', 'name': 'High Storage Optimized Eight Extra Large Instance', 'ram': 249856, - 'disk': 3200, + 'disk': 6400, 'bandwidth': None }, }
