Upgrade the Monasca Fluentd output plugin

From Victoria onwards a conflict is seen between the rest-client
library used by the Monasca Fluentd output plugin and the openssl
library. Specifically, a more recent release of openssl has dropped
a default which is referenced by the 1.8 release of the rest-client
library. In this commit we bump the Fluentd output plugin release
to pull in a more recent version of the rest-client library which
can handle this change.

Change-Id: Iae5402ea40c9f856b1787fdf82cc2389ffe0be03
Closes-Bug: 1910382
(cherry picked from commit b4e8826c0c)
This commit is contained in:
Doug Szumski 2021-01-06 11:53:00 +00:00 committed by Mark Goddard
parent 5f3620629b
commit 4e3b178e6e
2 changed files with 7 additions and 1 deletions

View File

@ -104,7 +104,7 @@ RUN ln -s /bin/mkdir /usr/bin/mkdir
{% block fluentd_monasca_plugin_install %}
# Build and install Fluentd output plugin for Monasca API
ARG monasca_output_plugin_tag=1.0.1
ARG monasca_output_plugin_tag=1.0.2
ARG monasca_output_plugin_url=https://github.com/monasca/fluentd-monasca/archive/$monasca_output_plugin_tag.tar.gz
RUN curl -sSL $monasca_output_plugin_url -o /tmp/fluentd-monasca.tar.gz \

View File

@ -0,0 +1,6 @@
---
fixes:
- |
Fixes an issue with the Fluentd Monasca output plugin related
to a more recent openssl library. `LP#1910382
<https://launchpad.net/bugs/1910382>`__