Internal Keystone URL cannot use admin port
Fixes: https://www.pivotaltracker.com/story/show/44679259 The keystone endpoint internalURL must not have the admin port. It must use the regular service port. This misconfiguration caused the following bugs: https://bugs.launchpad.net/horizon/+bug/1122758 https://bugs.launchpad.net/horizon/+bug/1123184
This commit is contained in:
@@ -250,7 +250,7 @@ end
|
||||
## Add Endpoints ##
|
||||
|
||||
node.set["keystone"]["adminURL"] = identity_admin_endpoint.to_s
|
||||
node.set["keystone"]["internalURL"] = identity_admin_endpoint.to_s
|
||||
node.set["keystone"]["internalURL"] = identity_endpoint.to_s
|
||||
node.set["keystone"]["publicURL"] = identity_endpoint.to_s
|
||||
|
||||
Chef::Log.info "Keystone AdminURL: #{identity_admin_endpoint.to_s}"
|
||||
|
||||
Reference in New Issue
Block a user