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 dependency loki to v3.1.1 #96

Merged
merged 2 commits into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ENV PROMETHEUS_VERSION=v2.54.1
# renovate: datasource=github-releases depName=tempo packageName=grafana/tempo
ENV TEMPO_VERSION="2.5.0"
# renovate: datasource=github-releases depName=loki packageName=grafana/loki
ENV LOKI_VERSION="3.1.0"
ENV LOKI_VERSION=v3.1.1
# renovate: datasource=github-releases depName=opentelemetry-collector packageName=open-telemetry/opentelemetry-collector-releases
ENV OPENTELEMETRY_COLLECTOR_VERSION="0.106.1"

Expand Down Expand Up @@ -37,7 +37,7 @@ RUN bash -c 'curl -sOL https://github.com/grafana/tempo/releases/download/v"$TEM
tar xfz tempo_"${TEMPO_VERSION}"_linux_"${TARGETARCH}".tar.gz -C tempo/ && \
rm tempo_"${TEMPO_VERSION}"_linux_"${TARGETARCH}".tar.gz'

RUN bash -c 'curl -sOL https://github.com/grafana/loki/releases/download/v"$LOKI_VERSION"/loki-linux-"${TARGETARCH}".zip && \
RUN bash -c 'curl -sOL https://github.com/grafana/loki/releases/download/"${LOKI_VERSION}"/loki-linux-"${TARGETARCH}".zip && \
mkdir loki && \
unzip loki-linux-"${TARGETARCH}" -d loki/ && \
rm loki-linux-"${TARGETARCH}".zip'
Expand Down
Loading