Repository: libcloud Updated Branches: refs/heads/trunk e943be82d -> 9e7fed3d8
Updated EC2 instance type dict to allow access to t2.nano instances in all places where supported. Updated CHANGES.rst to reflect update Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/9e7fed3d Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/9e7fed3d Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/9e7fed3d Branch: refs/heads/trunk Commit: 9e7fed3d83536130589df38720f4ecdf17b63297 Parents: e943be8 Author: anthony-shaw <anthony.p.s...@gmail.com> Authored: Wed Dec 23 15:54:02 2015 +1100 Committer: anthony-shaw <anthony.p.s...@gmail.com> Committed: Wed Dec 23 15:54:02 2015 +1100 ---------------------------------------------------------------------- CHANGES.rst | 13 ++++++++++++- libcloud/compute/drivers/ec2.py | 10 ++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/9e7fed3d/CHANGES.rst ---------------------------------------------------------------------- diff --git a/CHANGES.rst b/CHANGES.rst index 874aebb..d2bcfcd 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,8 +1,19 @@ Changelog ========= +Changes with current version of Apache Libcloud +----------------------------------------------- + +Compute +~~~~~~~ + +- Added t2.nano instance type to EC2 Compute driver + (GITHUB-663) + [Anthony Shaw] + + Changes with Apache Libcloud 0.20.0 -------------------------------------------- +----------------------------------- General ~~~~~~~ http://git-wip-us.apache.org/repos/asf/libcloud/blob/9e7fed3d/libcloud/compute/drivers/ec2.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py index c14513c..d03b3f4 100644 --- a/libcloud/compute/drivers/ec2.py +++ b/libcloud/compute/drivers/ec2.py @@ -700,6 +700,7 @@ REGION_DETAILS = { 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -753,6 +754,7 @@ REGION_DETAILS = { 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -812,6 +814,7 @@ REGION_DETAILS = { 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -871,6 +874,7 @@ REGION_DETAILS = { 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -916,6 +920,7 @@ REGION_DETAILS = { 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -967,6 +972,7 @@ REGION_DETAILS = { 'd2.2xlarge', 'd2.4xlarge', 'd2.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -1025,6 +1031,7 @@ REGION_DETAILS = { 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -1052,6 +1059,7 @@ REGION_DETAILS = { 'm3.2xlarge', 'c1.medium', 'c1.xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -1108,6 +1116,7 @@ REGION_DETAILS = { 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium', @@ -1157,6 +1166,7 @@ REGION_DETAILS = { 'r3.2xlarge', 'r3.4xlarge', 'r3.8xlarge', + 't2.nano', 't2.micro', 't2.small', 't2.medium',