Add fluentd grok-parser plugin on CentOS on aarch64

This conditional was missed in the original patch moving aarch64
to td-agent. [1]

After this change, other plugins will have newer versions
installed as well, as it happens in other image flavours.

[1] I86ecdc1ac45dfd76b94a34d1b837f7c0bc975dcd

Closes-Bug: #1955889
Change-Id: I10ff098b3356eb02ad4a1006b988812356768fec
This commit is contained in:
Radosław Piliszek 2021-12-28 08:57:51 +00:00
parent 7893306add
commit d3cb86a837
2 changed files with 6 additions and 1 deletions

View File

@ -82,7 +82,7 @@ RUN chmod 755 /usr/local/bin/kolla_extend_start
{% block fluentd_plugins_install %}
{% if not (base_package_type == 'rpm' and base_arch != 'x86_64') %}
{% if base_arch in ['aarch64', 'x86_64'] %}
{% set fluentd_plugins = [
'fluent-plugin-elasticsearch',
'fluent-plugin-grep',

View File

@ -0,0 +1,5 @@
---
fixes:
- |
fluentd on CentOS on aarch64 is no longer missing the grok-parser plugin.
`LP#1955889 <https://launchpad.net/bugs/1955889>`__