File tree Expand file tree Collapse file tree 4 files changed +26
-0
lines changed Expand file tree Collapse file tree 4 files changed +26
-0
lines changed Original file line number Diff line number Diff line change @@ -11,3 +11,9 @@ Pin-Priority: 1000
11
11
Package: td-agent*
12
12
Pin: version 4.0.*
13
13
Pin-Priority: 1000
14
+
15
+ # NOTE(mgoddard): logstash 7.9.x is the last version that supports
16
+ # Elasticsearch OSS.
17
+ Package: logstash-oss
18
+ Pin: version 7.9.*
19
+ Pin-Priority: 1000
Original file line number Diff line number Diff line change @@ -10,3 +10,9 @@ Pin-Priority: 1000
10
10
Package: td-agent*
11
11
Pin: version 4.0.*
12
12
Pin-Priority: 1000
13
+
14
+ # NOTE(mgoddard): logstash 7.9.x is the last version that supports
15
+ # Elasticsearch OSS.
16
+ Package: logstash-oss
17
+ Pin: version 7.9.*
18
+ Pin-Priority: 1000
Original file line number Diff line number Diff line change @@ -19,9 +19,17 @@ ENV JAVA_HOME /usr/lib/jvm/jre-11-openjdk/
19
19
ENV JAVA_HOME /usr/lib/jvm/java-11-openjdk-{{debian_arch}}/
20
20
{% endif %}
21
21
22
+ # NOTE(mgoddard): logstash 7.9.x is the last version that supports
23
+ # Elasticsearch OSS.
24
+ {% if base_package_type == 'rpm' %}
25
+ {% set logstash_packages = [
26
+ 'logstash-oss-7.9.*' ,
27
+ ] %}
28
+ {% else %}
22
29
{% set logstash_packages = [
23
30
'logstash-oss' ,
24
31
] %}
32
+ {% endif %}
25
33
26
34
# Post-install script of Logstash fails when trying to install Logstash and
27
35
# Java together.
Original file line number Diff line number Diff line change
1
+ ---
2
+ fixes :
3
+ - |
4
+ Fixes an issue with the logstash image which was incompatible with the last
5
+ OSS version (7.10) of Elasticsearch. Logstash is now pinned to 7.9.
6
+ `LP#1941754 <https://bugs.launchpad.net/kolla/+bug/1941754>`__
You can’t perform that action at this time.
0 commit comments