mirror of
https://github.com/bitnami/containers.git
synced 2026-03-18 15:27:52 +08:00
[bitnami/grafana-tempo-query] Release 2.0.0-debian-11-r0 (#23934)
Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
50
bitnami/grafana-tempo-query/2/debian-11/Dockerfile
Normal file
50
bitnami/grafana-tempo-query/2/debian-11/Dockerfile
Normal file
@@ -0,0 +1,50 @@
|
|||||||
|
FROM docker.io/bitnami/minideb:bullseye
|
||||||
|
|
||||||
|
ARG TARGETARCH
|
||||||
|
|
||||||
|
LABEL org.opencontainers.image.authors="https://bitnami.com/contact" \
|
||||||
|
org.opencontainers.image.description="Application packaged by Bitnami" \
|
||||||
|
org.opencontainers.image.licenses="Apache-2.0" \
|
||||||
|
org.opencontainers.image.ref.name="2.0.0-debian-11-r0" \
|
||||||
|
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/grafana-tempo-query" \
|
||||||
|
org.opencontainers.image.title="grafana-tempo-query" \
|
||||||
|
org.opencontainers.image.vendor="VMware, Inc." \
|
||||||
|
org.opencontainers.image.version="2.0.0"
|
||||||
|
|
||||||
|
ENV HOME="/" \
|
||||||
|
OS_ARCH="${TARGETARCH:-amd64}" \
|
||||||
|
OS_FLAVOUR="debian-11" \
|
||||||
|
OS_NAME="linux"
|
||||||
|
|
||||||
|
COPY prebuildfs /
|
||||||
|
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||||
|
# Install required system packages and dependencies
|
||||||
|
RUN install_packages ca-certificates curl procps
|
||||||
|
RUN mkdir -p /tmp/bitnami/pkg/cache/ && cd /tmp/bitnami/pkg/cache/ && \
|
||||||
|
COMPONENTS=( \
|
||||||
|
"jaeger-query-1.42.0-0-linux-${OS_ARCH}-debian-11" \
|
||||||
|
"grafana-tempo-query-2.0.0-0-linux-${OS_ARCH}-debian-11" \
|
||||||
|
) && \
|
||||||
|
for COMPONENT in "${COMPONENTS[@]}"; do \
|
||||||
|
if [ ! -f "${COMPONENT}.tar.gz" ]; then \
|
||||||
|
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz" -O ; \
|
||||||
|
curl -SsLf "https://downloads.bitnami.com/files/stacksmith/${COMPONENT}.tar.gz.sha256" -O ; \
|
||||||
|
fi && \
|
||||||
|
sha256sum -c "${COMPONENT}.tar.gz.sha256" && \
|
||||||
|
tar -zxf "${COMPONENT}.tar.gz" -C /opt/bitnami --strip-components=2 --no-same-owner --wildcards '*/files' && \
|
||||||
|
rm -rf "${COMPONENT}".tar.gz{,.sha256} ; \
|
||||||
|
done
|
||||||
|
RUN apt-get autoremove --purge -y curl && \
|
||||||
|
apt-get update && apt-get upgrade -y && \
|
||||||
|
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||||
|
RUN chmod g+rwX /opt/bitnami
|
||||||
|
|
||||||
|
ENV APP_VERSION="2.0.0" \
|
||||||
|
BITNAMI_APP_NAME="grafana-tempo-query" \
|
||||||
|
GRPC_STORAGE_PLUGIN_BINARY="/opt/bitnami/grafana-tempo-query/bin/tempo-query" \
|
||||||
|
PATH="/opt/bitnami/jaeger-query/bin:/opt/bitnami/grafana-tempo-query/bin:$PATH" \
|
||||||
|
SPAN_STORAGE_TYPE="grpc-plugin"
|
||||||
|
|
||||||
|
USER 1001
|
||||||
|
ENTRYPOINT [ "query" ]
|
||||||
|
CMD [ "--grpc-storage-plugin.configuration-file=/bitnami/grafana-tempo/conf/tempo-query.yaml" ]
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
version: '2'
|
||||||
|
services:
|
||||||
|
grafana-tempo-query:
|
||||||
|
image: docker.io/bitnami/grafana-tempo-query:2
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
{
|
||||||
|
"grafana-tempo-query": {
|
||||||
|
"arch": "amd64",
|
||||||
|
"digest": "c43ba1e4cf6942bded3997cb68be3b45f611ca9311c2630db692529c13d58ad5",
|
||||||
|
"distro": "debian-11",
|
||||||
|
"type": "NAMI",
|
||||||
|
"version": "2.0.0-0"
|
||||||
|
},
|
||||||
|
"jaeger-query": {
|
||||||
|
"arch": "amd64",
|
||||||
|
"digest": "d41729756a9f22dd1775ee89b16c11f5ef73a4aaecd3da3e35c8adc1cf9fd6af",
|
||||||
|
"distro": "debian-11",
|
||||||
|
"type": "NAMI",
|
||||||
|
"version": "1.42.0-0"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
Bitnami containers ship with software bundles. You can find the licenses at:
|
||||||
|
https://bitnami.com/open-source
|
||||||
|
/opt/bitnami/[name-of-bundle]/licenses/[bundle-version].txt
|
||||||
25
bitnami/grafana-tempo-query/2/debian-11/prebuildfs/usr/sbin/install_packages
Executable file
25
bitnami/grafana-tempo-query/2/debian-11/prebuildfs/usr/sbin/install_packages
Executable file
@@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -eu
|
||||||
|
|
||||||
|
n=0
|
||||||
|
max=2
|
||||||
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
|
until [ $n -gt $max ]; do
|
||||||
|
set +e
|
||||||
|
(
|
||||||
|
apt-get update -qq &&
|
||||||
|
apt-get install -y --no-install-recommends "$@"
|
||||||
|
)
|
||||||
|
CODE=$?
|
||||||
|
set -e
|
||||||
|
if [ $CODE -eq 0 ]; then
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
if [ $n -eq $max ]; then
|
||||||
|
exit $CODE
|
||||||
|
fi
|
||||||
|
echo "apt failed, retrying"
|
||||||
|
n=$(($n + 1))
|
||||||
|
done
|
||||||
|
apt-get clean && rm -rf /var/lib/apt/lists /var/cache/apt/archives
|
||||||
5
bitnami/grafana-tempo-query/2/debian-11/tags-info.yaml
Normal file
5
bitnami/grafana-tempo-query/2/debian-11/tags-info.yaml
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
rolling-tags:
|
||||||
|
- "2"
|
||||||
|
- 2-debian-11
|
||||||
|
- 2.0.0
|
||||||
|
- latest
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
version: '2'
|
version: '2'
|
||||||
services:
|
services:
|
||||||
grafana-tempo-query:
|
grafana-tempo-query:
|
||||||
image: docker.io/bitnami/grafana-tempo-query:1
|
image: docker.io/bitnami/grafana-tempo-query:2
|
||||||
|
|||||||
Reference in New Issue
Block a user