Deploy Sahara with unversioned endpoints

Sahara supports unversioned endpoint also for the current API v1.1,
and deploying with unversioned endpoints is a better setting
if people want to use both API v1.1 and the (soon-stable) API v2
at the same time.
See https://review.openstack.org/#/c/582285/ for more details.

Closes-Bug: #1782147
Change-Id: I113af3a351df1cb1d1e3cc5e7bb2e5efd8e58ec7
This commit is contained in:
Luigi Toscano 2019-01-24 14:35:15 +01:00
parent c9a8bc4f66
commit 9c69cfcbe4
1 changed files with 3 additions and 3 deletions

View File

@ -29,9 +29,9 @@ class openstack_integration::sahara (
}
class { '::sahara::keystone::auth':
public_url => "${::openstack_integration::config::base_url}:8386/v1.1/%(tenant_id)s",
internal_url => "${::openstack_integration::config::base_url}:8386/v1.1/%(tenant_id)s",
admin_url => "${::openstack_integration::config::base_url}:8386/v1.1/%(tenant_id)s",
public_url => "${::openstack_integration::config::base_url}:8386",
internal_url => "${::openstack_integration::config::base_url}:8386",
admin_url => "${::openstack_integration::config::base_url}:8386",
password => 'a_big_secret',
}
class { '::sahara::logging':