Change keystone v2.0 url to v3

Change-Id: I9629f8317b54a8b4ecd81df4a609165f1ceff986
This commit is contained in:
Tobias Urdin 2019-02-24 13:04:42 +01:00
parent d1703e6a76
commit 362221a324
1 changed files with 3 additions and 3 deletions

View File

@ -257,8 +257,8 @@ EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
# For multiple regions uncomment this configuration, and add (endpoint, title).
#AVAILABLE_REGIONS = [
# ('http://cluster1.example.com:5000/v2.0', 'cluster1'),
# ('http://cluster2.example.com:5000/v2.0', 'cluster2'),
# ('http://cluster1.example.com:5000/v3', 'cluster1'),
# ('http://cluster2.example.com:5000/v3', 'cluster2'),
#]
<% if @available_regions.kind_of?(Array) %>
AVAILABLE_REGIONS = [
@ -269,7 +269,7 @@ AVAILABLE_REGIONS = [
<% end -%>
#OPENSTACK_HOST = "127.0.0.1"
#OPENSTACK_KEYSTONE_URL = "http://%s:5000/v2.0" % OPENSTACK_HOST
#OPENSTACK_KEYSTONE_URL = "http://%s:5000/v3" % OPENSTACK_HOST
#OPENSTACK_KEYSTONE_DEFAULT_ROLE = "member"
OPENSTACK_KEYSTONE_URL = "<%= @keystone_url %>"
OPENSTACK_KEYSTONE_DEFAULT_ROLE = "<%= @keystone_default_role %>"