Merge "Only notify handlers in service-check-containers"

This commit is contained in:
Zuul
2025-10-03 09:47:38 +00:00
committed by Gerrit Code Review
3 changed files with 10 additions and 7 deletions

View File

@@ -200,6 +200,6 @@
# reload. This may be due to differences in tested versions of libvirt
# (8.0.0 vs 6.0.0). Reload should be low overhead, so do it always.
libvirt_restart_handlers: >-
{{ ['Restart nova-libvirt container']
if enable_nova_libvirt_container | bool else
['Reload libvirtd'] }}
{{ ['Reload libvirtd']
if not enable_nova_libvirt_container | bool else
[] }}

View File

@@ -19,8 +19,6 @@
dest: "{{ node_config_directory }}/ovn-sb-db-relay-{{ item }}/config.json"
mode: "0660"
become: true
notify:
- Restart ovn-sb-db-relay container
- name: Generate config files for OVN relay services
vars:
@@ -31,5 +29,3 @@
dest: "{{ node_config_directory }}/ovn-sb-db-relay-{{ item }}/ovsdb-relay.json"
mode: "0660"
become: true
notify:
- Restart ovn-sb-db-relay container

View File

@@ -0,0 +1,7 @@
---
fixes:
- |
Handlers to trigger a restart nova_libvirt and ovn_sb_db_relay
containers have been removed and restarts of these services
are now under the control of the service-check-containers
role `LP#2123946 <https://bugs.launchpad.net/kolla-ansible/+bug/2123946>`__.