[bitnami/grafana] Release 12.0.2-debian-12-r1 (#82596)

Signed-off-by: Bitnami Bot <bitnami.bot@broadcom.com>
This commit is contained in:
Bitnami Bot
2025-06-26 10:16:44 +02:00
committed by GitHub
parent c6c1959002
commit 3529233563
5 changed files with 11 additions and 28 deletions

View File

@@ -8,10 +8,9 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2025-06-18T08:49:34Z" \
org.opencontainers.image.created="2025-06-26T06:27:11Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/grafana/README.md" \
org.opencontainers.image.ref.name="12.0.2-debian-12-r0" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/grafana" \
org.opencontainers.image.title="grafana" \
org.opencontainers.image.vendor="Broadcom, Inc." \
@@ -26,9 +25,11 @@ COPY prebuildfs /
SHELL ["/bin/bash", "-o", "errexit", "-o", "nounset", "-o", "pipefail", "-c"]
# Install required system packages and dependencies
RUN install_packages ca-certificates curl libaudit1 libcap-ng0 libfontconfig libgcc-s1 libicu72 liblzma5 libncurses6 libpam0g libssl3 libstdc++6 libtinfo6 libxml2 procps zlib1g
RUN mkdir -p /tmp/bitnami/pkg/cache/ ; cd /tmp/bitnami/pkg/cache/ || exit 1 ; \
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=( \
"mysql-client-11.4.7-0-linux-${OS_ARCH}-debian-12" \
"mysql-client-11.8.2-0-linux-${OS_ARCH}-debian-12" \
"ini-file-1.4.8-0-linux-${OS_ARCH}-debian-12" \
"grafana-12.0.2-0-linux-${OS_ARCH}-debian-12" \
) ; \

View File

@@ -15,6 +15,6 @@
"arch": "amd64",
"distro": "debian-12",
"type": "NAMI",
"version": "11.4.7-0"
"version": "11.8.2-0"
}
}

View File

@@ -52,24 +52,6 @@ grafana_plugin_list=(
"scadavis-synoptic-panel"
)
# Plugins deprecated in version 11 but still valid in version 10
grafana_10_plugin_list=(
"grafana-piechart-panel"
"michaeldmoore-annunciator-panel"
"briangann-datatable-panel"
"natel-discrete-panel"
"digiapulssi-organisations-panel"
"neocat-cal-heatmap-panel"
"agenty-flowcharting-panel"
"michaeldmoore-multistat-panel"
"marcuscalidus-svg-panel"
"snuids-trafficlights-panel"
)
if [[ "$(get_grafana_major_version)" -le 10 ]]; then
grafana_plugin_list+=( "${grafana_10_plugin_list[@]}" )
fi
cd ${GRAFANA_BASE_DIR} || exit 1
for plugin in "${grafana_plugin_list[@]}"; do
info "Installing ${plugin} plugin"

View File

@@ -1,5 +1,5 @@
rolling-tags:
- "12"
- 12-debian-12
- 12.0.2
- latest
- "12"
- 12-debian-12
- 12.0.2
- latest

View File

@@ -172,7 +172,7 @@ grafana:
You can customize this image and include the plugins you desire editing the list of plugins avilable in the script (see the variable "grafana_plugin_list") and build your own image as shown below:
```console
cd 10/debian-12
cd 12/debian-12
docker build -t your-custom-grafana .
```