-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* doc / conf updates and tests per 1.1 enhancements * relocate systemd file, rename helm readme file * linting * update helm readme * streamline release tarball layout * add span descriptions to tracing docs * add docker-compose demo * add new/changed v1.1 doc
- Loading branch information
James Ranson
authored
May 5, 2020
1 parent
bf7c100
commit e0d9703
Showing
55 changed files
with
2,918 additions
and
325 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
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
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
ARG IMAGE_ARCH=amd64 | ||
|
||
FROM golang:1.14.1 as builder | ||
COPY . /go/src/github.com/Comcast/trickster | ||
WORKDIR /go/src/github.com/Comcast/trickster | ||
FROM golang:1.14.2 as builder | ||
COPY . /go/src/github.com/tricksterproxy/trickster | ||
WORKDIR /go/src/github.com/tricksterproxy/trickster | ||
|
||
ARG GOARCH=amd64 | ||
RUN GOOS=linux GOARCH=${GOARCH} CGO_ENABLED=0 make build | ||
|
||
FROM ${IMAGE_ARCH}/alpine:3.11.5 | ||
LABEL maintainer "The Trickster Authors <[email protected]>" | ||
|
||
COPY --from=builder /go/src/github.com/Comcast/trickster/OPATH/trickster /usr/local/bin/trickster | ||
COPY --from=builder /go/src/github.com/tricksterproxy/trickster/OPATH/trickster /usr/local/bin/trickster | ||
COPY cmd/trickster/conf/example.conf /etc/trickster/trickster.conf | ||
RUN chown nobody /usr/local/bin/trickster | ||
RUN chmod +x /usr/local/bin/trickster | ||
|
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,5 @@ | ||
# Helm Charts | ||
|
||
Trickster's Helm charts are located in their own project at <https://github.com/tricksterproxy/helm-charts/>. We welcome contributions to our charts. | ||
|
||
If you want to Install the Trickster charts, see <https://helm.tricksterproxy.io/> or search for Trickster on Helm Hub. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.