Add global endpoint_type_proto options
This allows you to set the endpoint-type protocol globally for all services, e.g. internaluri can be http, and publicuri can be https. You will no longer have to specify it per service, although those settings already exist and have not changed. This patch changes no functionality for existing installs or deployments and the values are defaulted to be the same as before, but allows these values to be adjusted on a per-endpoint type basis. Change-Id: I4854216726491f6ea4e265694e702f980fddc5a6 Closes-Bug: #1399383
This commit is contained in:
parent
8e2e2d87e1
commit
394c7960bf
@ -85,9 +85,9 @@ keystone_service_region: RegionOne
|
||||
keystone_service_name: keystone
|
||||
keystone_service_port: 5000
|
||||
keystone_service_proto: http
|
||||
keystone_service_publicuri_proto: "{{ keystone_service_proto }}"
|
||||
keystone_service_adminuri_proto: "{{ keystone_service_proto }}"
|
||||
keystone_service_internaluri_proto: "{{ keystone_service_proto }}"
|
||||
keystone_service_publicuri_proto: "{{ openstack_service_publicuri_proto | default(keystone_service_proto) }}"
|
||||
keystone_service_adminuri_proto: "{{ openstack_service_adminuri_proto | default(keystone_service_proto) }}"
|
||||
keystone_service_internaluri_proto: "{{ openstack_service_internaluri_proto | default(keystone_service_proto) }}"
|
||||
keystone_service_type: identity
|
||||
keystone_service_description: "Keystone Identity Service"
|
||||
keystone_service_user_name: keystone
|
||||
|
Loading…
x
Reference in New Issue
Block a user