Stop firewalld config during kolla genconfig

Prevent the haproxy-config role from attempting to modify firewalld when
running kolla-ansible genconfig.

Closes-Bug: #2002522
Change-Id: Ie8a524cc944aa8cb9cf0999b1b8da79f30b40092
This commit is contained in:
Jack Hodgkiss 2023-01-11 11:25:02 +00:00
parent 2b88144c05
commit 86870bd7f8
No known key found for this signature in database
GPG Key ID: 57A4FB54723DA5F1
2 changed files with 7 additions and 0 deletions

View File

@ -36,6 +36,7 @@
- item.value.port is defined
- item.value.external | default('false') | bool
- enable_external_api_firewalld | bool
- kolla_action != "config"
with_dict: "{{ project_services | extract_haproxy_services }}"
notify:
- "Reload firewalld"

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Prevent haproxy-config role from attempting to configure firewalld
during a kolla-ansible genconfig.
`LP#2002522 <https://launchpad.net/bugs/2002522>`__