-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Update ELK images for 9.0.2 #19184
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
tianon
merged 2 commits into
docker-library:master
from
elastic:update-official-images-9.0.2
Jun 5, 2025
Merged
Update ELK images for 9.0.2 #19184
tianon
merged 2 commits into
docker-library:master
from
elastic:update-official-images-9.0.2
Jun 5, 2025
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This comment has been minimized.
This comment has been minimized.
There's a few bugs in this due to how we updated the release for 9.0.1. We're looking into it, I'll circle back with the team and update when the fixes are ready. |
Diff for 93597b9:diff --git a/_bashbrew-cat b/_bashbrew-cat
index 08e9cfc..3d64073 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -19,10 +19,10 @@ Architectures: amd64, arm64v8
GitFetch: refs/heads/8.18
GitCommit: 1224fffeb3ad5be8a373d52d0906a6c70146b27b
-Tags: 9.0.1
+Tags: 9.0.2
Architectures: amd64, arm64v8
GitFetch: refs/heads/9.0
-GitCommit: c1767391264142d319c5aebbc7b44ff935ecb40d
+GitCommit: 6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271
# kibana
@@ -46,10 +46,10 @@ Architectures: amd64, arm64v8
GitFetch: refs/heads/8.18
GitCommit: 1224fffeb3ad5be8a373d52d0906a6c70146b27b
-Tags: 9.0.1
+Tags: 9.0.2
Architectures: amd64, arm64v8
GitFetch: refs/heads/9.0
-GitCommit: c1767391264142d319c5aebbc7b44ff935ecb40d
+GitCommit: 6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271
# logstash
@@ -73,7 +73,7 @@ Architectures: amd64, arm64v8
GitFetch: refs/heads/8.18
GitCommit: 1224fffeb3ad5be8a373d52d0906a6c70146b27b
-Tags: 9.0.1
+Tags: 9.0.2
Architectures: amd64, arm64v8
GitFetch: refs/heads/9.0
-GitCommit: c1767391264142d319c5aebbc7b44ff935ecb40d
+GitCommit: 6e12e2f27f2ef93e0e22aa6b8775b77d19fe4271
diff --git a/_bashbrew-list b/_bashbrew-list
index 75ed2b9..7b6d1ad 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,12 +1,12 @@
elasticsearch:7.17.28
elasticsearch:8.17.6
elasticsearch:8.18.2
-elasticsearch:9.0.1
+elasticsearch:9.0.2
kibana:7.17.28
kibana:8.17.6
kibana:8.18.2
-kibana:9.0.1
+kibana:9.0.2
logstash:7.17.28
logstash:8.17.6
logstash:8.18.2
-logstash:9.0.1
+logstash:9.0.2
diff --git a/_bashbrew-list-build-order b/_bashbrew-list-build-order
index 75ed2b9..7b6d1ad 100644
--- a/_bashbrew-list-build-order
+++ b/_bashbrew-list-build-order
@@ -1,12 +1,12 @@
elasticsearch:7.17.28
elasticsearch:8.17.6
elasticsearch:8.18.2
-elasticsearch:9.0.1
+elasticsearch:9.0.2
kibana:7.17.28
kibana:8.17.6
kibana:8.18.2
-kibana:9.0.1
+kibana:9.0.2
logstash:7.17.28
logstash:8.17.6
logstash:8.18.2
-logstash:9.0.1
+logstash:9.0.2
diff --git a/elasticsearch_9.0.1/Dockerfile b/elasticsearch_9.0.2/Dockerfile
similarity index 93%
rename from elasticsearch_9.0.1/Dockerfile
rename to elasticsearch_9.0.2/Dockerfile
index f88d456..a193566 100644
--- a/elasticsearch_9.0.1/Dockerfile
+++ b/elasticsearch_9.0.2/Dockerfile
@@ -17,7 +17,7 @@ RUN microdnf install -y findutils tar gzip
# build. Instead, we check the binary against the published checksum.
RUN set -eux ; \
tini_bin="" ; \
- arch="$(rpm --query --queryformat='%{ARCH}' rpm)"; case "${arch}" in \
+ arch="$(rpm --query --queryformat='%{ARCH}' rpm)"; case "$arch" in \
aarch64) tini_bin='tini-arm64' ;; \
x86_64) tini_bin='tini-amd64' ;; \
*) echo >&2 ; echo >&2 "Unsupported architecture $arch" ; echo >&2 ; exit 1 ;; \
@@ -30,7 +30,7 @@ RUN set -eux ; \
chmod 0555 /bin/tini
WORKDIR /usr/share/elasticsearch
-RUN arch="$(rpm --query --queryformat='%{ARCH}' rpm)" && curl -f --retry 10 -S -L --output /tmp/elasticsearch.tar.gz https://artifacts-no-kpi.elastic.co/downloads/elasticsearch/elasticsearch-9.0.1-linux-${arch}.tar.gz
+RUN arch="$(rpm --query --queryformat='%{ARCH}' rpm)" && curl -f --retry 10 -S -L --output /tmp/elasticsearch.tar.gz https://artifacts-no-kpi.elastic.co/downloads/elasticsearch/elasticsearch-9.0.2-linux-$arch.tar.gz
RUN tar -zxf /tmp/elasticsearch.tar.gz --strip-components=1 && \
# Configure the distribution for Docker
sed -i -e 's/ES_DISTRIBUTION_TYPE=tar/ES_DISTRIBUTION_TYPE=docker/' bin/elasticsearch-env && \
@@ -101,30 +101,30 @@ RUN chmod g=u /etc/passwd && \
EXPOSE 9200 9300
-LABEL org.label-schema.build-date="2025-04-30T10:07:41.393025990Z" \
+LABEL org.label-schema.build-date="2025-05-28T10:06:37.834829258Z" \
org.label-schema.license="Elastic-License-2.0" \
org.label-schema.name="Elasticsearch" \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://www.elastic.co/products/elasticsearch" \
org.label-schema.usage="https://www.elastic.co/guide/en/elasticsearch/reference/index.html" \
- org.label-schema.vcs-ref="73f7594ea00db50aa7e941e151a5b3985f01e364" \
+ org.label-schema.vcs-ref="0a58bc1dc7a4ae5412db66624aab968370bd44ce" \
org.label-schema.vcs-url="https://github.com/elastic/elasticsearch" \
org.label-schema.vendor="Elastic" \
- org.label-schema.version="9.0.1" \
- org.opencontainers.image.created="2025-04-30T10:07:41.393025990Z" \
+ org.label-schema.version="9.0.2" \
+ org.opencontainers.image.created="2025-05-28T10:06:37.834829258Z" \
org.opencontainers.image.documentation="https://www.elastic.co/guide/en/elasticsearch/reference/index.html" \
org.opencontainers.image.licenses="Elastic-License-2.0" \
- org.opencontainers.image.revision="73f7594ea00db50aa7e941e151a5b3985f01e364" \
+ org.opencontainers.image.revision="0a58bc1dc7a4ae5412db66624aab968370bd44ce" \
org.opencontainers.image.source="https://github.com/elastic/elasticsearch" \
org.opencontainers.image.title="Elasticsearch" \
org.opencontainers.image.url="https://www.elastic.co/products/elasticsearch" \
org.opencontainers.image.vendor="Elastic" \
- org.opencontainers.image.version="9.0.1"
+ org.opencontainers.image.version="9.0.2"
LABEL name="Elasticsearch" \
maintainer="infra@elastic.co" \
vendor="Elastic" \
- version="9.0.1" \
+ version="9.0.2" \
release="1" \
summary="Elasticsearch" \
description="You know, for search."
diff --git a/elasticsearch_9.0.1/bin/docker-entrypoint.sh b/elasticsearch_9.0.2/bin/docker-entrypoint.sh
similarity index 100%
rename from elasticsearch_9.0.1/bin/docker-entrypoint.sh
rename to elasticsearch_9.0.2/bin/docker-entrypoint.sh
diff --git a/elasticsearch_9.0.1/config/elasticsearch.yml b/elasticsearch_9.0.2/config/elasticsearch.yml
similarity index 100%
rename from elasticsearch_9.0.1/config/elasticsearch.yml
rename to elasticsearch_9.0.2/config/elasticsearch.yml
diff --git a/elasticsearch_9.0.1/config/log4j2.properties b/elasticsearch_9.0.2/config/log4j2.properties
similarity index 100%
rename from elasticsearch_9.0.1/config/log4j2.properties
rename to elasticsearch_9.0.2/config/log4j2.properties
diff --git a/kibana_9.0.1/Dockerfile b/kibana_9.0.2/Dockerfile
similarity index 92%
rename from kibana_9.0.1/Dockerfile
rename to kibana_9.0.2/Dockerfile
index 8dfcb52..43091ac 100644
--- a/kibana_9.0.1/Dockerfile
+++ b/kibana_9.0.2/Dockerfile
@@ -17,7 +17,7 @@ RUN cd /tmp && \
arch="$(rpm --query --queryformat='%{ARCH}' rpm)" && \
curl -f --retry 8 -s -L \
--output kibana.tar.gz \
- https://artifacts.elastic.co/downloads/kibana/kibana-9.0.1-linux-${arch}.tar.gz && \
+ https://artifacts.elastic.co/downloads/kibana/kibana-9.0.2-linux-${arch}.tar.gz && \
cd -
RUN mkdir /usr/share/kibana
@@ -103,30 +103,30 @@ RUN groupadd --gid 1000 kibana && \
--home-dir /usr/share/kibana --no-create-home \
kibana
-LABEL org.label-schema.build-date="2025-04-30T12:17:16.628Z" \
+LABEL org.label-schema.build-date="2025-05-28T10:54:28.565Z" \
org.label-schema.license="Elastic License" \
org.label-schema.name="Kibana" \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://www.elastic.co/products/kibana" \
org.label-schema.usage="https://www.elastic.co/guide/en/kibana/reference/index.html" \
- org.label-schema.vcs-ref="0df588b1a307954a3103991180df23c70184d34c" \
+ org.label-schema.vcs-ref="9861b44c7eec37c4ff6b68a464579ab4cbd5611e" \
org.label-schema.vcs-url="https://github.com/elastic/kibana" \
org.label-schema.vendor="Elastic" \
- org.label-schema.version="9.0.1" \
- org.opencontainers.image.created="2025-04-30T12:17:16.628Z" \
+ org.label-schema.version="9.0.2" \
+ org.opencontainers.image.created="2025-05-28T10:54:28.565Z" \
org.opencontainers.image.documentation="https://www.elastic.co/guide/en/kibana/reference/index.html" \
org.opencontainers.image.licenses="Elastic License" \
- org.opencontainers.image.revision="0df588b1a307954a3103991180df23c70184d34c" \
+ org.opencontainers.image.revision="9861b44c7eec37c4ff6b68a464579ab4cbd5611e" \
org.opencontainers.image.source="https://github.com/elastic/kibana" \
org.opencontainers.image.title="Kibana" \
org.opencontainers.image.url="https://www.elastic.co/products/kibana" \
org.opencontainers.image.vendor="Elastic" \
- org.opencontainers.image.version="9.0.1"
+ org.opencontainers.image.version="9.0.2"
LABEL name="Kibana" \
maintainer="infra@elastic.co" \
vendor="Elastic" \
- version="9.0.1" \
+ version="9.0.2" \
release="1" \
summary="Kibana" \
description="Your window into the Elastic Stack."
diff --git a/kibana_9.0.1/bin/kibana-docker b/kibana_9.0.2/bin/kibana-docker
similarity index 100%
rename from kibana_9.0.1/bin/kibana-docker
rename to kibana_9.0.2/bin/kibana-docker
diff --git a/kibana_9.0.1/config/kibana.yml b/kibana_9.0.2/config/kibana.yml
similarity index 100%
rename from kibana_9.0.1/config/kibana.yml
rename to kibana_9.0.2/config/kibana.yml
diff --git a/logstash_9.0.1/Dockerfile b/logstash_9.0.2/Dockerfile
similarity index 90%
rename from logstash_9.0.1/Dockerfile
rename to logstash_9.0.2/Dockerfile
index 2a13796..bceda52 100644
--- a/logstash_9.0.1/Dockerfile
+++ b/logstash_9.0.2/Dockerfile
@@ -34,10 +34,10 @@ RUN groupadd --gid 1000 logstash && \
--no-create-home \
logstash && \
arch="$(rpm --query --queryformat='%{ARCH}' rpm)" && \
- curl -f -Lo logstash.tar.gz "https://artifacts.elastic.co/downloads/logstash/logstash-9.0.1-linux-${arch}.tar.gz" && \
+ curl -f -Lo logstash.tar.gz "https://artifacts.elastic.co/downloads/logstash/logstash-9.0.2-linux-${arch}.tar.gz" && \
tar -zxf logstash.tar.gz -C /usr/share && \
rm logstash.tar.gz && \
- mv /usr/share/logstash-9.0.1 /usr/share/logstash && \
+ mv /usr/share/logstash-9.0.2 /usr/share/logstash && \
chown -R logstash:root /usr/share/logstash && \
chmod -R g=u /usr/share/logstash && \
mkdir /licenses && \
@@ -58,20 +58,20 @@ USER 1000
EXPOSE 9600 5044
-LABEL org.label-schema.build-date=2025-04-29T15:45:11+00:00 \
+LABEL org.label-schema.build-date=2025-05-26T15:41:48+00:00 \
org.label-schema.license="Elastic License" \
org.label-schema.name="logstash" \
org.label-schema.schema-version="1.0" \
org.label-schema.url="https://www.elastic.co/products/logstash" \
org.label-schema.vcs-url="https://github.com/elastic/logstash" \
org.label-schema.vendor="Elastic" \
- org.label-schema.version="9.0.1" \
- org.opencontainers.image.created=2025-04-29T15:45:11+00:00 \
+ org.label-schema.version="9.0.2" \
+ org.opencontainers.image.created=2025-05-26T15:41:48+00:00 \
org.opencontainers.image.description="Logstash is a free and open server-side data processing pipeline that ingests data from a multitude of sources, transforms it, and then sends it to your favorite 'stash.'" \
org.opencontainers.image.licenses="Elastic License" \
org.opencontainers.image.title="logstash" \
org.opencontainers.image.vendor="Elastic" \
- org.opencontainers.image.version="9.0.1" \
+ org.opencontainers.image.version="9.0.2" \
description="Logstash is a free and open server-side data processing pipeline that ingests data from a multitude of sources, transforms it, and then sends it to your favorite 'stash.'" \
license="Elastic License" \
maintainer="info@elastic.co" \
diff --git a/logstash_9.0.1/bin/docker-entrypoint b/logstash_9.0.2/bin/docker-entrypoint
similarity index 100%
rename from logstash_9.0.1/bin/docker-entrypoint
rename to logstash_9.0.2/bin/docker-entrypoint
diff --git a/logstash_9.0.1/config/log4j2.file.properties b/logstash_9.0.2/config/log4j2.file.properties
similarity index 100%
rename from logstash_9.0.1/config/log4j2.file.properties
rename to logstash_9.0.2/config/log4j2.file.properties
diff --git a/logstash_9.0.1/config/log4j2.properties b/logstash_9.0.2/config/log4j2.properties
similarity index 100%
rename from logstash_9.0.1/config/log4j2.properties
rename to logstash_9.0.2/config/log4j2.properties
diff --git a/logstash_9.0.1/config/logstash-full.yml b/logstash_9.0.2/config/logstash-full.yml
similarity index 100%
rename from logstash_9.0.1/config/logstash-full.yml
rename to logstash_9.0.2/config/logstash-full.yml
diff --git a/logstash_9.0.1/config/pipelines.yml b/logstash_9.0.2/config/pipelines.yml
similarity index 100%
rename from logstash_9.0.1/config/pipelines.yml
rename to logstash_9.0.2/config/pipelines.yml
diff --git a/logstash_9.0.1/env2yaml/env2yaml.go b/logstash_9.0.2/env2yaml/env2yaml.go
similarity index 100%
rename from logstash_9.0.1/env2yaml/env2yaml.go
rename to logstash_9.0.2/env2yaml/env2yaml.go
diff --git a/logstash_9.0.1/env2yaml/go.mod b/logstash_9.0.2/env2yaml/go.mod
similarity index 100%
rename from logstash_9.0.1/env2yaml/go.mod
rename to logstash_9.0.2/env2yaml/go.mod
diff --git a/logstash_9.0.1/env2yaml/go.sum b/logstash_9.0.2/env2yaml/go.sum
similarity index 100%
rename from logstash_9.0.1/env2yaml/go.sum
rename to logstash_9.0.2/env2yaml/go.sum
diff --git a/logstash_9.0.1/pipeline/default.conf b/logstash_9.0.2/pipeline/default.conf
similarity index 100%
rename from logstash_9.0.1/pipeline/default.conf
rename to logstash_9.0.2/pipeline/default.conf Relevant Maintainers:
|
tianon
approved these changes
Jun 5, 2025
CI failure is #19167 (comment) on versions that aren't being updated here (we won't block on this for now, but we might do so in the future so please do prioritize getting off Ubuntu 20.04, one way or another). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.