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 2013/06/15 06:35:15 UTC

[1/3] git commit: Update readme to include a better description.

Updated Branches:
  refs/heads/0.12.x 3386cfdeb -> 742d0832f


Update readme to include a better description.


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

Branch: refs/heads/0.12.x
Commit: e40429596a2fde770cbd26a15e74f9b9742812c2
Parents: 3386cfd
Author: Tomaz Muraus <to...@apache.org>
Authored: Fri Jun 14 20:14:00 2013 -0700
Committer: Tomaz Muraus <to...@apache.org>
Committed: Fri Jun 14 21:34:09 2013 -0700

----------------------------------------------------------------------
 README | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/e4042959/README
----------------------------------------------------------------------
diff --git a/README b/README
index 0cfc18d..e32ba3c 100644
--- a/README
+++ b/README
@@ -1,14 +1,24 @@
-Apache libcloud - a unified interface into the cloud
+Apache Libcloud - a unified interface into the cloud
 ====================================================
 
-The goal of this project is to create a basic yet functional standard library
-into various cloud providers.
+Apache Libcloud is a Python library which hides differences between different
+cloud provider APIs and allows you to manage different cloud resources
+through a unified and easy to use API.
+
+Resource you can manage with Libcloud are divided in the following categories:
+
+* Cloud Servers - services such as Amazon EC2 and Rackspace CloudServers
+  (libcloud.compute.*)
+* Cloud Storage - services such as Amazon S3 and Rackspace CloudFiles
+  (libcloud.storage.*)
+* Load Balancers as a Service, LBaaS (libcloud.loadbalancer.*)
+* DNS as a Service, DNSaaS (libcloud.dns.*)
 
 Apache libcloud is an Apache project, see <http://libcloud.apache.org> for
 more information.
 
 For API documentation and examples, see:
- <http://libcloud.apache.org/getting-started.html>
+<http://libcloud.apache.org/getting-started.html>
 
 Feedback
 ========


[2/3] git commit: modified timeout in deploy node method. This was modified such that the the timeout is respected when passed as a kwargs.

Posted by to...@apache.org.
modified timeout in deploy node method. This was modified such that the the timeout is respected when passed as a kwargs.

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/03e70842
Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/03e70842
Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/03e70842

Branch: refs/heads/0.12.x
Commit: 03e7084230db162e31e20247e54aa427121a0203
Parents: e404295
Author: cloudnull <ke...@rackspace.com>
Authored: Thu Jun 13 16:47:59 2013 -0500
Committer: Tomaz Muraus <to...@apache.org>
Committed: Fri Jun 14 21:34:15 2013 -0700

----------------------------------------------------------------------
 libcloud/compute/base.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/03e70842/libcloud/compute/base.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/base.py b/libcloud/compute/base.py
index c271479..829ec37 100644
--- a/libcloud/compute/base.py
+++ b/libcloud/compute/base.py
@@ -658,7 +658,8 @@ class NodeDriver(BaseDriver):
         try:
             node, ip_addresses = self.wait_until_running(
                 nodes=[node],
-                wait_period=3, timeout=NODE_ONLINE_WAIT_TIMEOUT,
+                wait_period=3,
+                timeout=kwargs.get('timeout', NODE_ONLINE_WAIT_TIMEOUT),
                 ssh_interface=ssh_interface)[0]
         except Exception:
             e = sys.exc_info()[1]


[3/3] git commit: Update changes file.

Posted by to...@apache.org.
Update changes file.

Conflicts:
	CHANGES


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

Branch: refs/heads/0.12.x
Commit: 742d0832f16f7219b9a377d7c3593a0e1b6de48c
Parents: 03e7084
Author: Tomaz Muraus <to...@apache.org>
Authored: Fri Jun 14 21:28:12 2013 -0700
Committer: Tomaz Muraus <to...@apache.org>
Committed: Fri Jun 14 21:34:48 2013 -0700

----------------------------------------------------------------------
 CHANGES | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/742d0832/CHANGES
----------------------------------------------------------------------
diff --git a/CHANGES b/CHANGES
index 85a13fd..7b4f5a8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -88,6 +88,9 @@ Changes with Apache Libcloud in deveploment:
       (LIBCLOUD-249)
       [Dinesh Bhoopathy]
 
+    - Fix a bug with deploy_node not respecting 'timeout' kwarg.
+      [Kevin Carter]
+
  *) Storage
 
     - Fix an issue with double encoding the container name in the CloudFiles