Skip to content
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

Update ELK images for 8.16.0 #17888

Merged
merged 1 commit into from
Nov 12, 2024

Conversation

navyau09
Copy link
Contributor

Update ELK images for 8.16.0

Copy link

Diff for 1477f2d:
diff --git a/_bashbrew-cat b/_bashbrew-cat
index 4ee3252..b4c01f8 100644
--- a/_bashbrew-cat
+++ b/_bashbrew-cat
@@ -14,6 +14,11 @@ Architectures: amd64, arm64v8
 GitFetch: refs/heads/8.15
 GitCommit: 5a2646dafd69282b29f600e9b366a4904764523a
 
+Tags: 8.16.0
+Architectures: amd64, arm64v8
+GitFetch: refs/heads/8.16
+GitCommit: fee99c955058383955d074689a499ffa0ebcf245
+
 
 # kibana
 Maintainers: Jon Budzenski (@jbudz)
@@ -31,6 +36,11 @@ Architectures: amd64, arm64v8
 GitFetch: refs/heads/8.15
 GitCommit: 5a2646dafd69282b29f600e9b366a4904764523a
 
+Tags: 8.16.0
+Architectures: amd64, arm64v8
+GitFetch: refs/heads/8.16
+GitCommit: fee99c955058383955d074689a499ffa0ebcf245
+
 
 # logstash
 Maintainers: João Duarte (@jsvd)
@@ -47,3 +57,8 @@ Tags: 8.15.3
 Architectures: amd64, arm64v8
 GitFetch: refs/heads/8.15
 GitCommit: 5a2646dafd69282b29f600e9b366a4904764523a
+
+Tags: 8.16.0
+Architectures: amd64, arm64v8
+GitFetch: refs/heads/8.16
+GitCommit: fee99c955058383955d074689a499ffa0ebcf245
diff --git a/_bashbrew-list b/_bashbrew-list
index 5e519f9..af6165c 100644
--- a/_bashbrew-list
+++ b/_bashbrew-list
@@ -1,6 +1,9 @@
 elasticsearch:7.17.25
 elasticsearch:8.15.3
+elasticsearch:8.16.0
 kibana:7.17.25
 kibana:8.15.3
+kibana:8.16.0
 logstash:7.17.25
 logstash:8.15.3
+logstash:8.16.0
diff --git a/_bashbrew-list-build-order b/_bashbrew-list-build-order
index 5e519f9..af6165c 100644
--- a/_bashbrew-list-build-order
+++ b/_bashbrew-list-build-order
@@ -1,6 +1,9 @@
 elasticsearch:7.17.25
 elasticsearch:8.15.3
+elasticsearch:8.16.0
 kibana:7.17.25
 kibana:8.15.3
+kibana:8.16.0
 logstash:7.17.25
 logstash:8.15.3
+logstash:8.16.0
diff --git a/elasticsearch_8.15.3/Dockerfile b/elasticsearch_8.16.0/Dockerfile
similarity index 80%
copy from elasticsearch_8.15.3/Dockerfile
copy to elasticsearch_8.16.0/Dockerfile
index 6f519c9..f81ebaf 100644
--- a/elasticsearch_8.15.3/Dockerfile
+++ b/elasticsearch_8.16.0/Dockerfile
@@ -20,13 +20,14 @@ RUN for iter in 1 2 3 4 5 6 7 8 9 10; do \
     done; \
     exit $exit_code
 
-# `tini` is a tiny but valid init for containers. This is used to cleanly
-# control how ES and any child processes are shut down.
-#
-# The tini GitHub page gives instructions for verifying the binary using
-# gpg, but the keyservers are slow to return the key and this can fail the
-# build. Instead, we check the binary against the published checksum.
-RUN set -eux ; \
+    # `tini` is a tiny but valid init for containers. This is used to cleanly
+    # control how ES and any child processes are shut down.
+    # For wolfi we pick it from the blessed wolfi package registry.
+    #
+    # The tini GitHub page gives instructions for verifying the binary using
+    # gpg, but the keyservers are slow to return the key and this can fail the
+    # build. Instead, we check the binary against the published checksum.
+    RUN set -eux ; \
         tini_bin="" ; \
         case "$(arch)" in \
             aarch64) tini_bin='tini-arm64' ;; \
@@ -43,7 +44,7 @@ RUN set -eux ; \
 RUN mkdir /usr/share/elasticsearch
 WORKDIR /usr/share/elasticsearch
 
-RUN curl --retry 10 -S -L --output /tmp/elasticsearch.tar.gz https://artifacts-no-kpi.elastic.co/downloads/elasticsearch/elasticsearch-8.15.3-linux-$(arch).tar.gz
+RUN curl --retry 10 -S -L --output /tmp/elasticsearch.tar.gz https://artifacts-no-kpi.elastic.co/downloads/elasticsearch/elasticsearch-8.16.0-linux-$(arch).tar.gz
 
 RUN tar -zxf /tmp/elasticsearch.tar.gz --strip-components=1
 
@@ -108,7 +110,7 @@ COPY --from=builder --chown=0:0 /usr/share/elasticsearch /usr/share/elasticsearc
 COPY --from=builder --chown=0:0 /bin/tini /bin/tini
 
 ENV PATH /usr/share/elasticsearch/bin:$PATH
-
+ENV SHELL /bin/bash
 COPY bin/docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh
 
 # 1. Sync the user and group permissions of /etc/passwd
@@ -135,25 +137,25 @@ RUN /etc/ca-certificates/update.d/docker-openjdk
 
 EXPOSE 9200 9300
 
-LABEL org.label-schema.build-date="2024-10-09T22:08:00.328917561Z" \
+LABEL org.label-schema.build-date="2024-11-08T10:05:56.292914697Z" \
   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="f97532e680b555c3a05e73a74c28afb666923018" \
+  org.label-schema.vcs-ref="12ff76a92922609df4aba61a368e7adf65589749" \
   org.label-schema.vcs-url="https://github.com/elastic/elasticsearch" \
   org.label-schema.vendor="Elastic" \
-  org.label-schema.version="8.15.3" \
-  org.opencontainers.image.created="2024-10-09T22:08:00.328917561Z" \
+  org.label-schema.version="8.16.0" \
+  org.opencontainers.image.created="2024-11-08T10:05:56.292914697Z" \
   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="f97532e680b555c3a05e73a74c28afb666923018" \
+  org.opencontainers.image.revision="12ff76a92922609df4aba61a368e7adf65589749" \
   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="8.15.3"
+  org.opencontainers.image.version="8.16.0"
 
 # Our actual entrypoint is `tini`, a minimal but functional init program. It
 # calls the entrypoint we provide, while correctly forwarding signals.
diff --git a/elasticsearch_8.15.3/bin/docker-entrypoint.sh b/elasticsearch_8.16.0/bin/docker-entrypoint.sh
similarity index 100%
copy from elasticsearch_8.15.3/bin/docker-entrypoint.sh
copy to elasticsearch_8.16.0/bin/docker-entrypoint.sh
diff --git a/elasticsearch_7.17.25/bin/docker-openjdk b/elasticsearch_8.16.0/bin/docker-openjdk
similarity index 100%
copy from elasticsearch_7.17.25/bin/docker-openjdk
copy to elasticsearch_8.16.0/bin/docker-openjdk
diff --git a/elasticsearch_7.17.25/config/elasticsearch.yml b/elasticsearch_8.16.0/config/elasticsearch.yml
similarity index 100%
copy from elasticsearch_7.17.25/config/elasticsearch.yml
copy to elasticsearch_8.16.0/config/elasticsearch.yml
diff --git a/elasticsearch_8.15.3/config/log4j2.properties b/elasticsearch_8.16.0/config/log4j2.properties
similarity index 100%
copy from elasticsearch_8.15.3/config/log4j2.properties
copy to elasticsearch_8.16.0/config/log4j2.properties
diff --git a/kibana_8.15.3/Dockerfile b/kibana_8.16.0/Dockerfile
similarity index 92%
copy from kibana_8.15.3/Dockerfile
copy to kibana_8.16.0/Dockerfile
index 5046d6a..b6f971b 100644
--- a/kibana_8.15.3/Dockerfile
+++ b/kibana_8.16.0/Dockerfile
@@ -16,7 +16,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl
 RUN cd /tmp && \
   curl --retry 8 -s -L \
     --output kibana.tar.gz \
-     https://artifacts.elastic.co/downloads/kibana/kibana-8.15.3-linux-$(arch).tar.gz && \
+     https://artifacts.elastic.co/downloads/kibana/kibana-8.16.0-linux-$(arch).tar.gz && \
   cd -
 
 RUN mkdir /usr/share/kibana
@@ -107,25 +108,25 @@ RUN groupadd --gid 1000 kibana && \
       --home-dir /usr/share/kibana --no-create-home \
       kibana
 
-LABEL org.label-schema.build-date="2024-10-09T11:11:49.786Z" \
+LABEL org.label-schema.build-date="2024-11-07T12:08:23.851Z" \
   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="3933429968aafb1ba31319fc38649d0f974044bf" \
+  org.label-schema.vcs-ref="a8a07dfc586d78b8f4b7997b00e126363d68c043" \
   org.label-schema.vcs-url="https://github.com/elastic/kibana" \
   org.label-schema.vendor="Elastic" \
-  org.label-schema.version="8.15.3" \
-  org.opencontainers.image.created="2024-10-09T11:11:49.786Z" \
+  org.label-schema.version="8.16.0" \
+  org.opencontainers.image.created="2024-11-07T12:08:23.851Z" \
   org.opencontainers.image.documentation="https://www.elastic.co/guide/en/kibana/reference/index.html" \
   org.opencontainers.image.licenses="Elastic License" \
-  org.opencontainers.image.revision="3933429968aafb1ba31319fc38649d0f974044bf" \
+  org.opencontainers.image.revision="a8a07dfc586d78b8f4b7997b00e126363d68c043" \
   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="8.15.3"
+  org.opencontainers.image.version="8.16.0"
 
 
 ENTRYPOINT ["/bin/tini", "--"]
diff --git a/kibana_8.15.3/bin/kibana-docker b/kibana_8.16.0/bin/kibana-docker
similarity index 98%
copy from kibana_8.15.3/bin/kibana-docker
copy to kibana_8.16.0/bin/kibana-docker
index 10fcbe6..3c1e7eb 100755
--- a/kibana_8.15.3/bin/kibana-docker
+++ b/kibana_8.16.0/bin/kibana-docker
@@ -40,6 +40,7 @@ kibana_vars=(
     csp.report_uri
     csp.report_to
     csp.report_only.form_action
+    permissionsPolicy.report_to
     data.autocomplete.valueSuggestions.terminateAfter
     data.autocomplete.valueSuggestions.timeout
     data.search.asyncSearch.waitForCompletion
@@ -63,6 +64,7 @@ kibana_vars=(
     elasticsearch.logQueries
     elasticsearch.password
     elasticsearch.pingTimeout
+    elasticsearch.publicBaseUrl
     elasticsearch.requestHeadersWhitelist
     elasticsearch.requestTimeout
     elasticsearch.serviceAccountToken
@@ -237,6 +239,7 @@ kibana_vars=(
     xpack.alerting.rules.run.actions.max
     xpack.alerting.rules.run.alerts.max
     xpack.alerting.rules.run.actions.connectorTypeOverrides
+    xpack.alerting.maxScheduledPerMinute
     xpack.alerts.healthCheck.interval
     xpack.alerts.invalidateApiKeysTask.interval
     xpack.alerts.invalidateApiKeysTask.removalDelay
@@ -411,7 +414,12 @@ kibana_vars=(
     xpack.securitySolution.packagerTaskInterval
     xpack.securitySolution.prebuiltRulesPackageVersion
     xpack.spaces.maxSpaces
+    xpack.task_manager.capacity
     xpack.task_manager.claim_strategy
+    xpack.task_manager.auto_calculate_default_ech_capacity
+    xpack.task_manager.discovery.active_nodes_lookback
+    xpack.task_manager.discovery.interval
+    xpack.task_manager.kibanas_per_partition
     xpack.task_manager.max_attempts
     xpack.task_manager.max_workers
     xpack.task_manager.monitored_aggregated_stats_refresh_rate
diff --git a/kibana_7.17.25/config/kibana.yml b/kibana_8.16.0/config/kibana.yml
similarity index 100%
copy from kibana_7.17.25/config/kibana.yml
copy to kibana_8.16.0/config/kibana.yml
diff --git a/logstash_8.15.3/Dockerfile b/logstash_8.16.0/Dockerfile
similarity index 91%
copy from logstash_8.15.3/Dockerfile
copy to logstash_8.16.0/Dockerfile
index 9216f2c..68cb3f1 100644
--- a/logstash_8.15.3/Dockerfile
+++ b/logstash_8.16.0/Dockerfile
@@ -26,9 +26,9 @@ RUN groupadd --gid 1000 logstash && \
   adduser --uid 1000 --gid 1000 --home /usr/share/logstash --no-create-home logstash
 
 # Add Logstash itself.
-RUN curl -Lo - https://artifacts.elastic.co/downloads/logstash/logstash-8.15.3-linux-$(arch).tar.gz | \
+RUN curl -Lo - https://artifacts.elastic.co/downloads/logstash/logstash-8.16.0-linux-$(arch).tar.gz | \
   tar zxf - -C /usr/share && \
-  mv /usr/share/logstash-8.15.3 /usr/share/logstash && \
+  mv /usr/share/logstash-8.16.0 /usr/share/logstash && \
   chown --recursive logstash:logstash /usr/share/logstash/ && \
   chown -R logstash:root /usr/share/logstash && \
   chmod -R g=u /usr/share/logstash && \
@@ -82,14 +82,14 @@ LABEL  org.label-schema.schema-version="1.0" \
   org.opencontainers.image.vendor="Elastic" \
   org.label-schema.name="logstash" \
   org.opencontainers.image.title="logstash" \
-  org.label-schema.version="8.15.3" \
-  org.opencontainers.image.version="8.15.3" \
+  org.label-schema.version="8.16.0" \
+  org.opencontainers.image.version="8.16.0" \
   org.label-schema.url="https://www.elastic.co/products/logstash" \
   org.label-schema.vcs-url="https://github.com/elastic/logstash" \
   org.label-schema.license="Elastic License" \
   org.opencontainers.image.licenses="Elastic License" \
   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.label-schema.build-date=2024-10-08T16:06:14+00:00 \
-  org.opencontainers.image.created=2024-10-08T16:06:14+00:00
+  org.label-schema.build-date=2024-11-06T18:55:01+00:00 \
+  org.opencontainers.image.created=2024-11-06T18:55:01+00:00
 
 ENTRYPOINT ["/usr/local/bin/docker-entrypoint"]
diff --git a/logstash_8.15.3/bin/docker-entrypoint b/logstash_8.16.0/bin/docker-entrypoint
similarity index 100%
copy from logstash_8.15.3/bin/docker-entrypoint
copy to logstash_8.16.0/bin/docker-entrypoint
diff --git a/logstash_8.15.3/config/log4j2.file.properties b/logstash_8.16.0/config/log4j2.file.properties
similarity index 100%
copy from logstash_8.15.3/config/log4j2.file.properties
copy to logstash_8.16.0/config/log4j2.file.properties
diff --git a/logstash_7.17.25/config/log4j2.properties b/logstash_8.16.0/config/log4j2.properties
similarity index 100%
copy from logstash_7.17.25/config/log4j2.properties
copy to logstash_8.16.0/config/log4j2.properties
diff --git a/logstash_7.17.25/config/logstash-full.yml b/logstash_8.16.0/config/logstash-full.yml
similarity index 100%
copy from logstash_7.17.25/config/logstash-full.yml
copy to logstash_8.16.0/config/logstash-full.yml
diff --git a/logstash_7.17.25/config/pipelines.yml b/logstash_8.16.0/config/pipelines.yml
similarity index 100%
copy from logstash_7.17.25/config/pipelines.yml
copy to logstash_8.16.0/config/pipelines.yml
diff --git a/logstash_8.15.3/env2yaml/env2yaml-amd64 b/logstash_8.16.0/env2yaml/env2yaml-amd64
similarity index 100%
copy from logstash_8.15.3/env2yaml/env2yaml-amd64
copy to logstash_8.16.0/env2yaml/env2yaml-amd64
diff --git a/logstash_8.15.3/env2yaml/env2yaml-arm64 b/logstash_8.16.0/env2yaml/env2yaml-arm64
similarity index 100%
copy from logstash_8.15.3/env2yaml/env2yaml-arm64
copy to logstash_8.16.0/env2yaml/env2yaml-arm64
diff --git a/logstash_7.17.25/pipeline/default.conf b/logstash_8.16.0/pipeline/default.conf
similarity index 100%
copy from logstash_7.17.25/pipeline/default.conf
copy to logstash_8.16.0/pipeline/default.conf

Relevant Maintainers:

@yosifkit yosifkit merged commit 97a3f57 into docker-library:master Nov 12, 2024
14 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants