[bitnami/elasticsearch-exporter] Release 1.10.0-debian-12-r9 (#91292)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2026-03-06 05:43:20 +01:00
committed by GitHub
parent a09af40dd3
commit a496b01e5c
2 changed files with 3 additions and 47 deletions

View File

@@ -7,7 +7,7 @@ ARG DOWNLOADS_URL="downloads.bitnami.com/files/stacksmith"
ARG TARGETARCH
LABEL org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2026-02-19T01:19:44Z" \
org.opencontainers.image.created="2026-03-06T04:19:57Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch-exporter/README.md" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/elasticsearch-exporter" \
@@ -28,7 +28,7 @@ RUN --mount=type=secret,id=downloads_url,env=SECRET_DOWNLOADS_URL \
DOWNLOADS_URL=${SECRET_DOWNLOADS_URL:-${DOWNLOADS_URL}} ; \
mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
COMPONENTS=( \
"elasticsearch-exporter-1.10.0-3-linux-${OS_ARCH}-debian-12" \
"elasticsearch-exporter-1.10.0-4-linux-${OS_ARCH}-debian-12" \
) ; \
for COMPONENT in "${COMPONENTS[@]}"; do \
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
@@ -47,7 +47,7 @@ RUN uninstall_packages curl
ENV APP_VERSION="1.10.0" \
BITNAMI_APP_NAME="elasticsearch-exporter" \
IMAGE_REVISION="8" \
IMAGE_REVISION="9" \
PATH="/opt/bitnami/elasticsearch-exporter/bin:$PATH"
EXPOSE 9114

View File

@@ -1,7 +1,5 @@
# Bitnami Secure Image for Elasticsearch Exporter
## What is Elasticsearch Exporter?
> Prometheus exporter for various metrics about Elasticsearch, written in Go.
[Overview of Elasticsearch Exporter](https://github.com/prometheus-community/elasticsearch_exporter)
@@ -112,48 +110,6 @@ docker logs elasticsearch-exporter
You can configure the containers [logging driver](https://docs.docker.com/engine/admin/logging/overview/) using the `--log-driver` option if you wish to consume the container logs differently. In the default configuration docker uses the `json-file` driver.
## Maintenance
### Upgrade this image
Bitnami provides up-to-date versions of elasticsearch-exporter, including security patches, soon after they are made upstream. We recommend that you follow these steps to upgrade your container.
#### Step 1: Get the updated image
```console
docker pull bitnami/elasticsearch-exporter:latest
```
#### Step 2: Stop and backup the currently running container
Stop the currently running container using the command
```console
docker stop elasticsearch-exporter
```
Next, take a snapshot of the persistent volume `/path/to/elasticsearch-exporter-persistence` using:
```console
rsync -a /path/to/elasticsearch-exporter-persistence /path/to/elasticsearch-exporter-persistence.bkp.$(date +%Y%m%d-%H.%M.%S)
```
You can use this snapshot to restore the database state should the upgrade fail.
#### Step 3: Remove the currently running container
```console
docker rm -v elasticsearch-exporter
```
#### Step 4: Run the new image
Re-create your container from the new image, restoring your backup if necessary.
```console
docker run --name elasticsearch-exporter bitnami/elasticsearch-exporter:latest
```
## Notable Changes
### Starting January 16, 2024