You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by to...@apache.org on 2015/02/17 16:04:26 UTC

[1/3] libcloud git commit: Allow user to pass ex_blockdevicemappings argument to the create_node method in the OpenStack driver.

Repository: libcloud
Updated Branches:
  refs/heads/trunk e41001ecf -> a2602376b


Allow user to pass ex_blockdevicemappings argument to the create_node method in
the OpenStack driver.

Closes #398

Signed-off-by: Tomaz Muraus <to...@apache.org>


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

Branch: refs/heads/trunk
Commit: 014c0c5acdeae52bde7cccace64c11bc44ee16f4
Parents: 0d0c4c4
Author: Gertjan Oude Lohuis <ge...@byte.nl>
Authored: Tue Nov 11 16:55:58 2014 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Tue Feb 17 15:56:56 2015 +0100

----------------------------------------------------------------------
 libcloud/compute/drivers/openstack.py | 4 ++++
 1 file changed, 4 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/014c0c5a/libcloud/compute/drivers/openstack.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/openstack.py b/libcloud/compute/drivers/openstack.py
index feab9b3..f9a5f7c 100644
--- a/libcloud/compute/drivers/openstack.py
+++ b/libcloud/compute/drivers/openstack.py
@@ -1285,6 +1285,10 @@ class OpenStack_1_1_NodeDriver(OpenStackNodeDriver):
                 name = security_group.name
                 server_params['security_groups'].append({'name': name})
 
+        if 'ex_blockdevicemappings' in kwargs:
+            server_params['block_device_mapping_v2'] = \
+                kwargs['ex_blockdevicemappings']
+
         if 'name' in kwargs:
             server_params['name'] = kwargs.get('name')
         else:


[2/3] libcloud git commit: Update changelog - move entries to the right section.

Posted by to...@apache.org.
Update changelog - move entries to the right section.


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

Branch: refs/heads/trunk
Commit: a4d7e0041fdf463dfdfc4a9a0a03d4792742bb1f
Parents: 014c0c5
Author: Tomaz Muraus <to...@apache.org>
Authored: Tue Feb 17 15:59:30 2015 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Tue Feb 17 15:59:49 2015 +0100

----------------------------------------------------------------------
 CHANGES.rst | 27 +++++++++++++++++++--------
 1 file changed, 19 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/a4d7e004/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index 7910c7b..b2be624 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,6 +1,25 @@
 Changelog
 =========
 
+Changes with Apache Libcloud in development
+-------------------------------------------
+
+Compute
+~~~~~~~
+
+- Improve GCE create_node, make sure ex_get_disktype function
+  (GITHUB-448)
+  [Markos Gogoulos]
+
+- GCE driver fix to handle unknown image projects
+  (GITHUB-447)
+  [Markos Gogoulos]
+
+- Allow user to pass ``ex_blockdevicemappings`` argument to the create_node
+  method in the OpenStack driver.
+  (GITHUB-398, LIBCLOUD-637)
+  [Allard Hoeve]
+
 Changes with Apache Libcloud 0.17.0
 -----------------------------------
 
@@ -16,14 +35,6 @@ General
 Compute
 ~~~~~~~
 
-- Improve GCE create_node, make sure ex_get_disktype function
-  (GITHUB-448)
-  [Markos Gogoulos]
-
-- GCE driver fix to handle unknown image projects
-  (GITHUB-447)
-  [Markos Gogoulos]
-
 - GCE driver updated to include ex_stop_node() and ex_start_node() methods.
   (GITHUB-442)
   [Eric Johnson]


[3/3] libcloud git commit: Merge branch 'trunk' of https://git-wip-us.apache.org/repos/asf/libcloud into trunk

Posted by to...@apache.org.
Merge branch 'trunk' of https://git-wip-us.apache.org/repos/asf/libcloud into trunk


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

Branch: refs/heads/trunk
Commit: a2602376b423829e2fb784f44c48ac4d6cd4f77e
Parents: a4d7e00 e41001e
Author: Tomaz Muraus <to...@apache.org>
Authored: Tue Feb 17 16:04:12 2015 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Tue Feb 17 16:04:12 2015 +0100

----------------------------------------------------------------------
 libcloud/test/compute/test_gce.py | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)
----------------------------------------------------------------------