-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(agent): add docker image based on tracetest * feat: use latest tag * feat: use latest release * fix: remove old entrypoint * include github actions * fix * fix * fix * fix * fix * fix * fix * fix * fix * remove testing code
- Loading branch information
1 parent
33791c0
commit 9474d33
Showing
3 changed files
with
35 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ARG TRACETEST_VERSION=latest | ||
|
||
FROM kubeshop/tracetest:${TRACETEST_VERSION} | ||
WORKDIR /app | ||
|
||
ENV TRACETEST_API_KEY "" | ||
|
||
ENTRYPOINT [ "tracetest", "start", "--api-key", "$TRACETEST_API_KEY" ] | ||
|