Skip to content

Commit f464511

Browse files
committed
Unnecessary comma in kolla-tolbox configuration - external rabbitmq
In kolla-toolbox configuration with external rabbitmq an unnecessary "comma" is generated, which is why the container does not want to start Closes-Bug: #2111267 Change-Id: Iaeb4cbb2824bfa3df5e1bde9f3ec0d744386a122 (cherry picked from commit 395f8b7)
1 parent b949557 commit f464511

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

ansible/roles/common/templates/kolla-toolbox.json.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"dest": "/etc/rabbitmq/erl_inetrc",
1919
"owner": "rabbitmq",
2020
"perm": "0600"
21-
}{% endif %}{% if kolla_copy_ca_into_containers | bool %},
21+
}{% endif %}{% if kolla_copy_ca_into_containers | bool %}{% if enable_rabbitmq | bool %},{% endif %}
2222
{
2323
"source": "{{ container_config_directory }}/ca-certificates",
2424
"dest": "/var/lib/kolla/share/ca-certificates",
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
fixes:
3+
- |
4+
In the kolla-toolbox configuration with external rabbitmq
5+
an unnecessary "comma" is generated, which is why the
6+
container does not want to start.
7+
`LP#2111267 <https://bugs.launchpad.net/kolla-ansible/+bug/2111267>`__

0 commit comments

Comments
 (0)