-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We don't actually *build* Envoy, we just add a script that we run when the image starts up. Signed-off-by: Toby Cabot <[email protected]>
- Loading branch information
Showing
4 changed files
with
50 additions
and
15 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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-22.04 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: {submodules: recursive} | ||
|
||
- uses: actions/setup-go@v4 | ||
with: {go-version: '=1.19.8'} | ||
|
||
- name: Decide what we're going to call this | ||
run: | | ||
TAG_SPECIFIC=${{ github.ref_name }} | ||
# if we're building from a branch (i.e., not a tag) then add | ||
# the short sha so we can have more than one build per branch | ||
if [[ ${{ github.ref }} != refs/tags/* ]]; then | ||
TAG_SPECIFIC=${TAG_SPECIFIC}-$(git rev-parse --short HEAD) | ||
fi | ||
echo $TAG_SPECIFIC | ||
echo "TAG_SPECIFIC=$TAG_SPECIFIC" >> $GITHUB_ENV | ||
- name: Make | ||
run: | | ||
make SUFFIX=${TAG_SPECIFIC} image-build | ||
- name: Push | ||
if: startsWith(github.ref, 'refs/tags/') | ||
run: | | ||
docker login -u epic-gateway+github_actions -p ${{ secrets.QUAY_EPIC_GATEWAY }} quay.io | ||
make SUFFIX=${TAG_SPECIFIC} image-push |
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,7 +1,5 @@ | ||
This is the Envoy used in the EPIC. | ||
This is the Envoy used in the EPIC Gateway. | ||
|
||
It bootstraps its config from the container filesystem at the standard location: /etc/envoy/envoy.yaml. | ||
|
||
The container includes some basic stuff for troubleshooting networking not found in the containers from envoy | ||
|
||
Note: the container registry is private, you will need to authenticate | ||
The container includes some basic stuff for troubleshooting networking not found in the containers from envoy. |