diff options
author | Julie Pichon <jpichon@redhat.com> | 2016-10-05 12:58:21 +0100 |
---|---|---|
committer | Julie Pichon <jpichon@redhat.com> | 2016-10-05 13:18:41 +0100 |
commit | 15c7d4b0af09f3240c23c11c31c67b52a220d0f3 (patch) | |
tree | 37e68bdee46c7c16421f1c8de6b1fb308614a7bc /manifests | |
parent | 39c9c6508a43b7c705f4f206e1093080c921b7d6 (diff) |
Explicitly use Keystone v2 endpoint in the UI
The UI expects a Keystone endpoint URL that includes the version
(without it, it is not possible to log in). Looking at the
dist/tripleo_ui_config.js.sample configuration sample in the tripleo-ui
repository, the current expectation is a v2.0 URL so let's use that for
now.
Change-Id: I4ca04b16251fbee264cd4ce5e5433c2c1cb6d2f0
Closes-Bug: #1630546
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/ui.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/ui.pp b/manifests/ui.pp index 3f6d37a..dc51bfc 100644 --- a/manifests/ui.pp +++ b/manifests/ui.pp @@ -72,7 +72,7 @@ class tripleo::ui ( $servername = $::fqdn, $bind_host = undef, $ui_port = 3000, - $keystone_url = hiera('keystone::endpoint::public_url'), + $keystone_url = hiera('keystone_auth_uri_v2'), $heat_url = hiera('heat::keystone::auth::public_url', undef), $ironic_url = hiera('ironic::keystone::auth::public_url', undef), $mistral_url = hiera('mistral::keystone::auth::public_url', undef), |