Remove problematic comments from fluentd.conf

Putting the path into these comments can cause a container restart when
no actual configuration has changed.

Closes-Bug: #2091703
Change-Id: I70f10a185a95aa0aad7285dfb0644fe9db536f67
This commit is contained in:
Matt Crees
2024-12-13 09:43:51 +00:00
parent 81a5a7cf4d
commit db19425958
2 changed files with 6 additions and 4 deletions

View File

@@ -6,7 +6,6 @@
# Inputs
{%- for path in fluentd_input_files %}
# Included from {{ path }}:
{%- if path.startswith('/') %}
{{ lookup('template', path) }}
{%- else %}
@@ -16,7 +15,6 @@
# Filters
{%- for path in fluentd_filter_files %}
# Included from {{ path }}:
{%- if path.startswith('/') %}
{{ lookup('template', path) }}
{%- else %}
@@ -26,7 +24,6 @@
# Formats
{%- for path in fluentd_format_files %}
# Included from {{ path }}:
{%- if path.startswith('/') %}
{{ lookup('template', path) }}
{%- else %}
@@ -36,7 +33,6 @@
# Outputs
{%- for path in fluentd_output_files %}
# Included from {{ path }}:
{%- if path.startswith('/') %}
{{ lookup('template', path) }}
{%- else %}

View File

@@ -0,0 +1,6 @@
---
fixes:
- |
Fixes a bug where fluentd (and the rest of the "common" services) were
restarted if kolla-ansible is called from a different location.
`LP#2091703 <https://bugs.launchpad.net/kolla-ansible/+bug/2091703>`__