diff options
author | ghanshyam <ghanshyam.mann@nectechnologies.in> | 2015-10-30 11:21:28 +0900 |
---|---|---|
committer | ghanshyam <ghanshyam.mann@nectechnologies.in> | 2015-10-31 13:10:59 +0900 |
commit | 571dfacd1865401951ae0b80d595b564493543d3 (patch) | |
tree | 04a1a45c21dda8736d11afff2eb9ef4111506d4a /doc/source/configuration.rst | |
parent | 87903a2f3dfd8921d6705618d308dd3300f72c20 (diff) | |
download | tempest-571dfacd1865401951ae0b80d595b564493543d3.tar.gz |
Add documentation for service catalog format
Tempest does not serve all kind of fancy service cataog format.
Service catalog should be in some standard and consistant format.
This patch adds those in doc to clarify the expected format of catalogs.
Change-Id: I5fb94510c019cca2e81112fb8cf123a3dfab8daf
Diffstat (limited to 'doc/source/configuration.rst')
-rw-r--r-- | doc/source/configuration.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/source/configuration.rst b/doc/source/configuration.rst index f228040c6..02fa0d85b 100644 --- a/doc/source/configuration.rst +++ b/doc/source/configuration.rst @@ -363,6 +363,17 @@ communication to a particular service. It is only if you are either not using the same *catalog_type* as devstack or you want Tempest to talk to a different endpoint type instead of publicURL for a service that these need to be changed. +.. note:: + + Tempest does not serve all kind of fancy URLs in the service catalog. + Service catalog should be in a standard format (which is going to be + standardized at keystone level). + Tempest expects URLs in the Service catalog in below format: + * http://example.com:1234/<version-info> + Examples: + * Good - http://example.com:1234/v2.0 + * Wouldn’t work - http://example.com:1234/xyz/v2.0/ + (adding prefix/suffix around version etc) Service feature configuration ----------------------------- |