summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPraveen Yalagandula <ypraveen@avinetworks.com>2017-09-15 17:43:48 +0000
committerZane Bitter <zbitter@redhat.com>2017-11-02 19:54:05 +0000
commit475051bcb197698f4643e88b6c453bc53d349618 (patch)
tree78751ca035a036524f27998534d20d97964890c3
parent7738ad7349db371d269ea622e363fb004eab7c1f (diff)
downloadheat-475051bcb197698f4643e88b6c453bc53d349618.tar.gz
Install guide bug fix: incorrect auth_uri for ec2authtoken
Keystone doesn't expose /ec2tokens path on non-versioned base url. So when auth_uri under ec2authtoken section in heat.conf is set to non-versioned keystone url (e.g., http://localhost:5000), heat-api-cfn's calls for authentication return 404 (Not Found) error. This fix updates the install guides to specify proper versioned url for auth_uri param. Note this is a stable branch only fix due to e18a523c9960ac5640eb9fefd4f447ae435cd3f4 landing on master Change-Id: If6eeff7d3212d71891311a4506ec6be4a1a30fa2 (cherry-picked from commit f18788ecd8237ae04158c9d0326d1c0504dd604d)
-rw-r--r--install-guide/source/install-obs.rst2
-rw-r--r--install-guide/source/install-rdo.rst2
-rw-r--r--install-guide/source/install-ubuntu.rst2
3 files changed, 3 insertions, 3 deletions
diff --git a/install-guide/source/install-obs.rst b/install-guide/source/install-obs.rst
index 6f49984b1..d61953cdf 100644
--- a/install-guide/source/install-obs.rst
+++ b/install-guide/source/install-obs.rst
@@ -380,7 +380,7 @@ Install and configure components
[ec2authtoken]
...
- auth_uri = http://controller:5000
+ auth_uri = http://controller:5000/v3
Replace ``HEAT_PASS`` with the password you chose for the
``heat`` user in the Identity service.
diff --git a/install-guide/source/install-rdo.rst b/install-guide/source/install-rdo.rst
index a315f2e84..affc7432f 100644
--- a/install-guide/source/install-rdo.rst
+++ b/install-guide/source/install-rdo.rst
@@ -380,7 +380,7 @@ Install and configure components
[ec2authtoken]
...
- auth_uri = http://controller:5000
+ auth_uri = http://controller:5000/v3
Replace ``HEAT_PASS`` with the password you chose for the
``heat`` user in the Identity service.
diff --git a/install-guide/source/install-ubuntu.rst b/install-guide/source/install-ubuntu.rst
index 1debfdcae..d9944b88b 100644
--- a/install-guide/source/install-ubuntu.rst
+++ b/install-guide/source/install-ubuntu.rst
@@ -379,7 +379,7 @@ Install and configure components
[ec2authtoken]
...
- auth_uri = http://controller:5000
+ auth_uri = http://controller:5000/v3
Replace ``HEAT_PASS`` with the password you chose for the
``heat`` user in the Identity service.