-
Notifications
You must be signed in to change notification settings - Fork 530
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backport tempo-query changes to 2.6 (#4170)
* [CHANGE] tempo-query: switch from grpcPlugin to standalone (#3840) * tempo-query: switch from grpcPlugin to standalone Jaeger 1.58 no longer supports gRPC storage plugins. Signed-off-by: Benedikt Bongartz <[email protected]> * add changelog entry Signed-off-by: Benedikt Bongartz <[email protected]> * update vendor Signed-off-by: Benedikt Bongartz <[email protected]> * fix: panic when requesting dependencies Signed-off-by: Benedikt Bongartz <[email protected]> * integration/e2e: adapt tempo-query test Signed-off-by: Benedikt Bongartz <[email protected]> * changelog: update Signed-off-by: Benedikt Bongartz <[email protected]> --------- Signed-off-by: Benedikt Bongartz <[email protected]> * Backport tempo-query: concurrent trace search and opentelemetry Signed-off-by: Pavol Loffay <[email protected]> * Fix Signed-off-by: Pavol Loffay <[email protected]> --------- Signed-off-by: Benedikt Bongartz <[email protected]> Signed-off-by: Pavol Loffay <[email protected]> Co-authored-by: Ben B. <[email protected]>
- Loading branch information
1 parent
314960a
commit 8981e19
Showing
21 changed files
with
260 additions
and
1,382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
FROM jaegertracing/jaeger-query:1.57.0 | ||
FROM alpine:3.20 as certs | ||
RUN apk --update add ca-certificates | ||
ARG TARGETARCH | ||
COPY bin/linux/tempo-query-${TARGETARCH} /tempo-query | ||
|
||
ENV SPAN_STORAGE_TYPE=grpc-plugin \ | ||
GRPC_STORAGE_PLUGIN_BINARY=/tempo-query | ||
RUN addgroup -g 10001 -S tempo && \ | ||
adduser -u 10001 -S tempo -G tempo | ||
|
||
# Ensure /tmp dir exists, hashicorp plugins need a /tmp dir to exist. | ||
RUN mkdir -p /tmp | ||
USER 10001:10001 | ||
|
||
ARG TARGETARCH | ||
COPY bin/linux/tempo-query-${TARGETARCH} /tempo-query | ||
|
||
ENTRYPOINT ["/tempo-query"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.