You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by an...@apache.org on 2016/10/30 09:22:15 UTC

[1/2] libcloud git commit: Add st1 and sc1 volume types to valid types Closes #925

Repository: libcloud
Updated Branches:
  refs/heads/trunk 9e5976c95 -> 627b97243


Add st1 and sc1 volume types to valid types
Closes #925


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/41ff326e
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/41ff326e
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/41ff326e

Branch: refs/heads/trunk
Commit: 41ff326ecd742b6995412953314b3f522bc7a84c
Parents: 9e5976c
Author: Sean Goller <se...@goller.net>
Authored: Thu Oct 27 11:48:53 2016 -0700
Committer: Anthony Shaw <an...@apache.org>
Committed: Sun Oct 30 09:21:19 2016 +0000

----------------------------------------------------------------------
 libcloud/compute/drivers/ec2.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/41ff326e/libcloud/compute/drivers/ec2.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/ec2.py b/libcloud/compute/drivers/ec2.py
index cf338e1..ecb9bde 100644
--- a/libcloud/compute/drivers/ec2.py
+++ b/libcloud/compute/drivers/ec2.py
@@ -3179,7 +3179,7 @@ class BaseEC2NodeDriver(NodeDriver):
         :return: The newly created volume.
         :rtype: :class:`StorageVolume`
         """
-        valid_volume_types = ['standard', 'io1', 'gp2']
+        valid_volume_types = ['standard', 'io1', 'gp2', 'st1', 'sc1']
 
         params = {
             'Action': 'CreateVolume',


[2/2] libcloud git commit: changes for #925

Posted by an...@apache.org.
changes for #925


Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/627b9724
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/627b9724
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/627b9724

Branch: refs/heads/trunk
Commit: 627b97243b127d9b0245a09878164f86ab9bcb66
Parents: 41ff326
Author: Anthony Shaw <an...@apache.org>
Authored: Sun Oct 30 09:22:06 2016 +0000
Committer: Anthony Shaw <an...@apache.org>
Committed: Sun Oct 30 09:22:06 2016 +0000

----------------------------------------------------------------------
 CHANGES.rst | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/627b9724/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index a890e74..7d0f290 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -8,6 +8,10 @@ Changes in current version of Apache Libcloud
 Compute
 ~~~~~~~
 
+- [ec2] Add st1 and sc1 volume types to valid types
+  (GITHUB-925)
+  [Sean Goller]
+
 - [digital ocean] add ex_change_kernel in DigitalOcean_v2 driver
   (GITHUB-922)
   [Rick van de Loo]