summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonty Taylor <mordred@inaugust.com>2015-05-30 13:01:41 -0400
committerMonty Taylor <mordred@inaugust.com>2015-05-30 13:10:27 -0400
commitf66aad5ad9b3ac3476d591c71546b468ab1407d3 (patch)
tree156b67579ff451f0ab40d6cf63ecb64b82edb69e
parentd503f0594fbdc377c07e4d79ce2cb08f6226aa7d (diff)
downloados-client-config-f66aad5ad9b3ac3476d591c71546b468ab1407d3.tar.gz
Add auro to list of known vendors
Change-Id: I48d6cffdcc16bdbf4912da775fb29876007fe8db
-rw-r--r--doc/source/vendor-support.rst17
-rw-r--r--os_client_config/vendors.py11
2 files changed, 28 insertions, 0 deletions
diff --git a/doc/source/vendor-support.rst b/doc/source/vendor-support.rst
index 602dd2b..1818e6b 100644
--- a/doc/source/vendor-support.rst
+++ b/doc/source/vendor-support.rst
@@ -118,3 +118,20 @@ gd1 Guangdong
* Images must be in `raw` format
* Floating IPs are not needed
* Security groups are provided by Neutron
+
+Auro
+----
+
+https://api.auro.io:5000/v2.0
+
+============== ================
+Region Name Human Name
+============== ================
+RegionOne RegionOne
+============== ================
+
+* Identity API Version is 2
+* Image API Version is 1
+* Images must be in `qcow2` format
+* Floating IPs are provided by Nova
+* Security groups are provided by Nova
diff --git a/os_client_config/vendors.py b/os_client_config/vendors.py
index 68a70c5..ad04c4d 100644
--- a/os_client_config/vendors.py
+++ b/os_client_config/vendors.py
@@ -73,4 +73,15 @@ CLOUD_DEFAULTS = dict(
image_format='raw',
floating_ip_source=None,
),
+ auro=dict(
+ auth=dict(
+ auth_url='https://api.auro.io:5000/v2.0',
+ ),
+ region_name='RegionOne',
+ identity_api_version='2',
+ image_api_version='1',
+ image_format='qcow2',
+ secgroup_source='nova',
+ floating_ip_source='nova',
+ ),
)