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 2014/12/17 16:19:20 UTC

libcloud git commit: Updates CloudSigma DC list

Repository: libcloud
Updated Branches:
  refs/heads/trunk 788ced3f7 -> 40ec9b7b6


Updates CloudSigma DC list

Removes:
 * Las Vegas, NV
Adds:
 * San Jose, CA
 * Miami, FL

Closes #417

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

Branch: refs/heads/trunk
Commit: 40ec9b7b638869c564f3c1a366d58ea97565584f
Parents: 788ced3
Author: Viktor Petersson <vp...@wireload.net>
Authored: Wed Dec 17 14:11:04 2014 +0100
Committer: Tomaz Muraus <to...@apache.org>
Committed: Wed Dec 17 16:14:29 2014 +0100

----------------------------------------------------------------------
 CHANGES.rst                   |  5 +++++
 libcloud/common/cloudsigma.py | 14 +++++++++-----
 2 files changed, 14 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/libcloud/blob/40ec9b7b/CHANGES.rst
----------------------------------------------------------------------
diff --git a/CHANGES.rst b/CHANGES.rst
index 742e290..57c2873 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -89,6 +89,11 @@ Compute
   (GITHUB-405)
   [Itxaka Serrano]
 
+- Update CloudSigma region list (remove Las Vegas, NV region and add new San
+  Jose, CA and Miami, FL region).
+  (GITHUB-417)
+  [Viktor Petersson]
+
 Storage
 ~~~~~~~
 

http://git-wip-us.apache.org/repos/asf/libcloud/blob/40ec9b7b/libcloud/common/cloudsigma.py
----------------------------------------------------------------------
diff --git a/libcloud/common/cloudsigma.py b/libcloud/common/cloudsigma.py
index c65535c..d44947f 100644
--- a/libcloud/common/cloudsigma.py
+++ b/libcloud/common/cloudsigma.py
@@ -41,17 +41,21 @@ API_ENDPOINTS_2_0 = {
         'country': 'Switzerland',
         'host': 'zrh.cloudsigma.com'
     },
-    'lvs': {
-        'name': 'Las Vegas',
+    'sjc': {
+        'name': 'San Jose, CA',
         'country': 'United States',
-        'host': 'lvs.cloudsigma.com'
+        'host': 'sjc.cloudsigma.com'
+    },
+    'mia': {
+        'name': 'Miami, FL',
+        'country': 'United States',
+        'host': 'mia.cloudsigma.com'
     },
     'wdc': {
-        'name': 'Washington DC',
+        'name': 'Washington, DC',
         'country': 'United States',
         'host': 'wdc.cloudsigma.com'
     }
-
 }
 
 DEFAULT_REGION = 'zrh'