-
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.
Merge pull request #4 from mrc-ide/gh-actions
Move docker image build to github actions
- Loading branch information
Showing
8 changed files
with
110 additions
and
23 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 @@ | ||
*.html |
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,92 @@ | ||
name: Build Docker Image | ||
|
||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
|
||
env: | ||
TAG_LOADBALANCER: mrcide/hintr-loadbalancer | ||
TAG_LOADBALANCER_GHCR: mrc-ide/hintr-loadbalancer | ||
|
||
jobs: | ||
docker: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- id: extract_branch | ||
name: Setup Environment | ||
shell: bash | ||
run: | | ||
if [ "${{github.event_name}}" = "pull_request" ]; | ||
then | ||
LONG_SHA=${{ github.event.pull_request.head.sha }} | ||
echo "CI_BRANCH=${{ github.head_ref }}" >> $GITHUB_OUTPUT | ||
else | ||
LONG_SHA=${GITHUB_SHA} | ||
echo "CI_BRANCH=${{ github.ref_name }}" >> $GITHUB_OUTPUT | ||
fi | ||
echo "CI_SHA=${LONG_SHA:0:7}" >> $GITHUB_OUTPUT | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Login to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to GHCR (GitHub Packages) | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build dev loadbalancer container | ||
uses: docker/build-push-action@v6 | ||
if: github.event_name == 'pull_request' | ||
with: | ||
load: true | ||
tags: | | ||
${{env.TAG_LOADBALANCER}}:${{steps.extract_branch.outputs.CI_BRANCH}} | ||
ghcr.io/${{env.TAG_LOADBALANCER_GHCR}}:${{steps.extract_branch.outputs.CI_BRANCH}} | ||
- name: Build prod loadbalancer container | ||
uses: docker/build-push-action@v6 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
load: true | ||
tags: | | ||
${{env.TAG_LOADBALANCER}}:latest | ||
${{env.TAG_LOADBALANCER}}:${{steps.extract_branch.outputs.CI_BRANCH}} | ||
ghcr.io/${{env.TAG_LOADBALANCER_GHCR}}:latest | ||
ghcr.io/${{env.TAG_LOADBALANCER_GHCR}}:${{steps.extract_branch.outputs.CI_BRANCH}} | ||
- name: Test loadbalancer container | ||
run: ./test | ||
env: | ||
TAG_BRANCH: ${{env.TAG_LOADBALANCER}}:${{steps.extract_branch.outputs.CI_BRANCH}} | ||
|
||
- name: Push dev loadbalancer container | ||
uses: docker/build-push-action@v6 | ||
if: github.event_name == 'pull_request' | ||
with: | ||
push: true | ||
tags: | | ||
${{env.TAG_LOADBALANCER}}:${{steps.extract_branch.outputs.CI_BRANCH}} | ||
ghcr.io/${{env.TAG_LOADBALANCER_GHCR}}:${{steps.extract_branch.outputs.CI_BRANCH}} | ||
- name: Push prod loadbalancer container | ||
uses: docker/build-push-action@v6 | ||
if: github.event_name != 'pull_request' | ||
with: | ||
push: true | ||
tags: | | ||
${{env.TAG_LOADBALANCER}}:latest | ||
${{env.TAG_LOADBALANCER}}:${{steps.extract_branch.outputs.CI_BRANCH}} | ||
ghcr.io/${{env.TAG_LOADBALANCER_GHCR}}:latest | ||
ghcr.io/${{env.TAG_LOADBALANCER_GHCR}}:${{steps.extract_branch.outputs.CI_BRANCH}} |
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 @@ | ||
.idea |
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,8 +1,9 @@ | ||
|
||
FROM haproxytech/haproxy-debian:2.6 | ||
FROM haproxytech/haproxy-debian:3.0 | ||
|
||
RUN apt-get update && apt-get install -y \ | ||
jq | ||
|
||
COPY bin /usr/local/bin | ||
COPY haproxy.cfg /usr/local/etc/haproxy/haproxy.cfg | ||
COPY dataplaneapi.yaml /etc/haproxy/dataplaneapi.yaml |
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
dataplaneapi: | ||
host: "0.0.0.0" | ||
port: 5555 | ||
userlist: | ||
userlist: "haproxy-dataplaneapi" | ||
haproxy: | ||
reload: | ||
reload_cmd: "kill -SIGUSR2 1" | ||
restart_cmd: "kill -SIGUSR2 1" | ||
reload_delay: 5 | ||
config_file: "/usr/local/etc/haproxy/haproxy.cfg" | ||
haproxy_bin: "/usr/sbin/haproxy" |
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