Add missing service URLs for AODH

The service URLs for internal and admin were not being properly
configured so they were using the default values which means
that any service which was making calls on the internal or
admin URL endpoints would fail.

This patch adds them in order to make them accessible and
have the correct configuration (SSL or no SSL).

Change-Id: I851893c005fc4c91a7aa9a9a979ec315e1fc500f
Closes-Bug: #1750236
This commit is contained in:
Mohammed Naser 2018-03-27 10:22:01 -07:00
parent b19ccccc22
commit 0e5b6cbd96

View File

@ -22,6 +22,8 @@ aodh_rabbitmq_host_group: "{{ rabbitmq_host_group }}"
aodh_service_in_ldap: "{{ service_ldap_backend_enabled }}"
aodh_service_publicuri: "{{ openstack_service_publicuri_proto|default(aodh_service_proto) }}://{{ external_lb_vip_address }}:{{ aodh_service_port }}"
aodh_service_internaluri: "{{ openstack_service_publicuri_proto|default(aodh_service_proto) }}://{{ internal_lb_vip_address }}:{{ aodh_service_port }}"
aodh_service_adminuri: "{{ openstack_service_publicuri_proto|default(aodh_service_proto) }}://{{ internal_lb_vip_address }}:{{ aodh_service_port }}"
# Ensure that the package state matches the global setting
aodh_package_state: "{{ package_state }}"