Fix the glob for the custom RabbitMQ configuration

Followup on Id4588f4529a4522e68e22ce58711cb927fa68a9d to fix the
place of the RabbitMQ configuration and there are not only the
rabbitmq.conf and rabbitmq-env.conf but also advanced.config which
also often customized and more other files.

Change-Id: Iff0b28b770753c81ac526afd1ce6f61d77fad25c
Signed-off-by: Maksim Malchuk <maksim.malchuk@gmail.com>
This commit is contained in:
Maksim Malchuk 2024-02-14 20:52:46 +03:00
parent 997a1b2c63
commit 6f59b49ab8
2 changed files with 8 additions and 1 deletions

View File

@ -266,7 +266,7 @@ kolla_openstack_custom_config_rules_default:
- glob: "**/multipath.conf"
strategy: template
priority: 1000
- glob: "**/rabbitmq*.conf"
- glob: "rabbitmq/**/*"
strategy: template
priority: 1000
- glob: "**/*wsgi*.conf"

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Added fix for the custom RabbitMQ configuration. Fixed incorrect path and
glob, so now you can template also all other configuration files such as
``advanced.config``, ``definitions.json``, ``enabled_plugins``, and
``erl_inetrc`` together with ``rabbitmq.conf`` and ``rabbitmq-env.conf``.