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 2016/07/10 10:34:30 UTC

[1/2] libcloud git commit: auroracompute: Add Barcelona (Spain) region to driver

Repository: libcloud
Updated Branches:
  refs/heads/trunk 52b037bc2 -> f783845da


auroracompute: Add Barcelona (Spain) region to driver

This is the new to open region of Aurora Compute

Closes #835

Signed-off-by: Tomaz Muraus <to...@tomaz.me>


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

Branch: refs/heads/trunk
Commit: c97ef89df2c1cee9bee34198f663ff77a73cf432
Parents: 52b037b
Author: Wido den Hollander <wi...@widodh.nl>
Authored: Wed Jul 6 10:01:46 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Sun Jul 10 12:26:33 2016 +0200

----------------------------------------------------------------------
 docs/compute/drivers/auroracompute.rst    | 1 +
 libcloud/compute/drivers/auroracompute.py | 4 +++-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/c97ef89d/docs/compute/drivers/auroracompute.rst
----------------------------------------------------------------------
diff --git a/docs/compute/drivers/auroracompute.rst b/docs/compute/drivers/auroracompute.rst
index 74b9997..42c6c6f 100644
--- a/docs/compute/drivers/auroracompute.rst
+++ b/docs/compute/drivers/auroracompute.rst
@@ -11,6 +11,7 @@ The datacenters / availability zones are located in:
 - Miami (US)
 - Los Angelos (US)
 - Tokyo (JP)
+- Barcelona (ES)
 
 
 .. figure:: /_static/images/provider_logos/pcextreme.png

http://git-wip-us.apache.org/repos/asf/libcloud/blob/c97ef89d/libcloud/compute/drivers/auroracompute.py
----------------------------------------------------------------------
diff --git a/libcloud/compute/drivers/auroracompute.py b/libcloud/compute/drivers/auroracompute.py
index 6be67ed..d5ed75a 100644
--- a/libcloud/compute/drivers/auroracompute.py
+++ b/libcloud/compute/drivers/auroracompute.py
@@ -28,6 +28,7 @@ class AuroraComputeRegion(object):
     MIA = 'Miami'
     LAX = 'Los Angeles'
     TYO = 'Tokyo'
+    BCN = 'Barcelona'
 
 
 REGION_ENDPOINT_MAP = {
@@ -35,7 +36,8 @@ REGION_ENDPOINT_MAP = {
     AuroraComputeRegion.RTD: '/rtd',
     AuroraComputeRegion.MIA: '/mia',
     AuroraComputeRegion.LAX: '/lax',
-    AuroraComputeRegion.TYO: '/tyo'
+    AuroraComputeRegion.TYO: '/tyo',
+    AuroraComputeRegion.BCN: '/bcn'
 }
 
 


[2/2] libcloud git commit: Update changelog.

Posted by to...@apache.org.
Update changelog.


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

Branch: refs/heads/trunk
Commit: f783845da4cd1914152635cb649fb5677ac10740
Parents: c97ef89
Author: Tomaz Muraus <to...@tomaz.me>
Authored: Sun Jul 10 12:27:21 2016 +0200
Committer: Tomaz Muraus <to...@tomaz.me>
Committed: Sun Jul 10 12:27:21 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/libcloud/blob/f783845d/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index 6e3d6ed..ba23490 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -11,6 +11,10 @@ Compute
   (GITHUB-833)
   [Juan Font Alonso]
 
+- Add Barcelona (Spain) region to the Aurora Compute driver.
+  (GITHUB-835)
+  [Wido den Hollander]
+
 DNS
 ~~~