monotek / fluentd-elasticsearch

build docker images for fluentd-elasticsearch

Home Page:https://quay.io/repository/fluentd_elasticsearch/fluentd

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

4.0.0 breaks compatibility with ES Versions < 8.0.0

jhuebner79 opened this issue · comments

Fixed it for my use case with:

diff --git a/Gemfile b/Gemfile
index 8868bf6..78f072d 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,7 +1,8 @@
 source 'https://rubygems.org'

 gem 'activesupport', '7.0.2.3'
-gem 'elasticsearch-xpack', '7.17.1'
+gem 'elasticsearch-xpack', '7.10.1'
 gem 'fluentd', '1.14.6'
 gem 'fluent-plugin-concat', '2.5.0'
 gem 'fluent-plugin-detect-exceptions', '0.0.14'

I suppose support of older versions is not intended by the project.