Add variable to globally control notifications enablement
In order to be able to globally enable notification reporting for all services, without an need to have ceilometer deployed or bunch of overrides for each service, we add `oslomsg_notify_enabled` variable that aims to control behaviour of enabled notifications. Presence of ceilometer is still respected by default and being referenced. Potential usecase are various billing panels that do rely on notifications but do not require presence of Ceilometer. Depends-On: https://review.opendev.org/c/openstack/openstack-ansible-plugins/+/914144 Change-Id: I9efc107116b149b75b2ed8b54335758e57d6dabc
This commit is contained in:
parent
84170d8491
commit
3ecb27ab51
@ -295,6 +295,7 @@ ironic_oslomsg_rpc_ssl_version: "{{ oslomsg_rpc_ssl_version | default('TLSv1_2')
|
||||
ironic_oslomsg_rpc_ssl_ca_file: "{{ oslomsg_rpc_ssl_ca_file | default('') }}"
|
||||
|
||||
# Notify
|
||||
ironic_oslomsg_notify_configure: "{{ oslomsg_notify_configure | default(False) }}"
|
||||
ironic_oslomsg_notify_host_group: "{{ oslomsg_notify_host_group | default('rabbitmq_all') }}"
|
||||
ironic_oslomsg_notify_setup_host: "{{ (ironic_oslomsg_notify_host_group in groups) | ternary(groups[ironic_oslomsg_notify_host_group][0], 'localhost') }}"
|
||||
ironic_oslomsg_notify_transport: "{{ oslomsg_notify_transport | default('rabbit') }}"
|
||||
|
@ -106,6 +106,7 @@
|
||||
_oslomsg_notify_vhost: "{{ ironic_oslomsg_notify_vhost }}"
|
||||
_oslomsg_notify_transport: "{{ ironic_oslomsg_notify_transport }}"
|
||||
_oslomsg_notify_policies: "{{ ironic_oslomsg_notify_policies }}"
|
||||
_oslomsg_notify_configure: "{{ ironic_oslomsg_notify_configure }}"
|
||||
tags:
|
||||
- always
|
||||
|
||||
|
@ -190,6 +190,7 @@ lock_path = {{ ironic_lock_dir }}/{{ ironic_system_slice_name }}
|
||||
[oslo_messaging_amqp]
|
||||
|
||||
[oslo_messaging_notifications]
|
||||
driver = {{ (ironic_oslomsg_notify_configure | bool) | ternary('messagingv2', 'noop') }}
|
||||
transport_url = {{ ironic_oslomsg_notify_transport }}://{% for host in ironic_oslomsg_notify_servers.split(',') %}{{ ironic_oslomsg_notify_userid }}:{{ ironic_oslomsg_notify_password }}@{{ host }}:{{ ironic_oslomsg_notify_port }}{% if not loop.last %},{% else %}/{{ _ironic_oslomsg_notify_vhost_conf }}{% if ironic_oslomsg_notify_use_ssl | bool %}?ssl=1&ssl_version={{ ironic_oslomsg_notify_ssl_version }}&ssl_ca_file={{ ironic_oslomsg_notify_ssl_ca_file }}{% else %}?ssl=0{% endif %}{% endif %}{% endfor %}
|
||||
|
||||
[oslo_messaging_rabbit]
|
||||
|
Loading…
x
Reference in New Issue
Block a user