-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Support building docker images with GitHub Action (#27)
- Loading branch information
Showing
5 changed files
with
163 additions
and
4 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,72 @@ | ||
name: Build API Server Image and Push to Image Registry | ||
|
||
on: | ||
push: | ||
tags: | ||
- "apiserver-v*.*.*" | ||
workflow_dispatch: ~ | ||
|
||
jobs: | ||
build-apiserver-image: | ||
runs-on: ubuntu-latest | ||
env: | ||
IMAGE_REGISTRY: ${{ vars.IMAGE_REGISTRY || 'higress-registry.cn-hangzhou.cr.aliyuncs.com' }} | ||
IMAGE_NAME: ${{ vars.API_SERVER_IMAGE_NAME || 'higress/api-server' }} | ||
steps: | ||
- name: "Checkout ${{ github.ref }}" | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: "Setup Go" | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.20 | ||
|
||
- name: Setup Golang Caches | ||
uses: actions/cache@v3 | ||
with: | ||
path: |- | ||
~/.cache/go-build | ||
~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ github.run_id }} | ||
restore-keys: ${{ runner.os }}-go | ||
|
||
- name: Calculate Docker metadata | ||
id: docker-meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: | | ||
type=sha | ||
type=match,pattern=apiserver-v(.*),group=1 | ||
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }} | ||
- name: Login to Docker Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ vars.IMAGE_REGISTRY }} | ||
username: ${{ secrets.REGISTRY_USERNAME }} | ||
password: ${{ secrets.REGISTRY_PASSWORD }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build Docker Image and Push | ||
run: | | ||
cd src/apiserver/ | ||
readarray -t IMAGES <<< "${{ steps.docker-meta.outputs.tags }}" | ||
baseImage="" | ||
for image in ${IMAGES[@]}; do | ||
echo "Image: $image" | ||
if [ -z "$baseImage" ]; then | ||
GOPROXY="https://proxy.golang.org,direct" IMG="${image}" make docker-buildx-push | ||
baseImage="$image" | ||
else | ||
docker buildx imagetools create "$baseImage" --tag "$image" | ||
fi | ||
done |
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,72 @@ | ||
name: Build Runner Image and Push to Image Registry | ||
|
||
on: | ||
push: | ||
tags: | ||
- "runner-v*.*.*" | ||
workflow_dispatch: ~ | ||
|
||
jobs: | ||
build-runner-image: | ||
runs-on: ubuntu-latest | ||
env: | ||
IMAGE_REGISTRY: ${{ vars.IMAGE_REGISTRY || 'higress-registry.cn-hangzhou.cr.aliyuncs.com' }} | ||
IMAGE_NAME: ${{ vars.RUNNER_IMAGE_NAME || 'higress/runner' }} | ||
steps: | ||
- name: "Checkout ${{ github.ref }}" | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 1 | ||
|
||
- name: "Setup Go" | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.20 | ||
|
||
- name: Setup Golang Caches | ||
uses: actions/cache@v3 | ||
with: | ||
path: |- | ||
~/.cache/go-build | ||
~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ github.run_id }} | ||
restore-keys: ${{ runner.os }}-go | ||
|
||
- name: Calculate Docker metadata | ||
id: docker-meta | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: | | ||
type=sha | ||
type=match,pattern=runner-v(.*),group=1 | ||
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }} | ||
- name: Login to Docker Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ${{ vars.IMAGE_REGISTRY }} | ||
username: ${{ secrets.REGISTRY_USERNAME }} | ||
password: ${{ secrets.REGISTRY_PASSWORD }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Build Docker Image and Push | ||
run: | | ||
cd src/runner/ | ||
readarray -t IMAGES <<< "${{ steps.docker-meta.outputs.tags }}" | ||
baseImage="" | ||
for image in ${IMAGES[@]}; do | ||
echo "Image: $image" | ||
if [ -z "$baseImage" ]; then | ||
GOPROXY="https://proxy.golang.org,direct" IMG="${image}" make docker-buildx-push | ||
baseImage="$image" | ||
else | ||
docker buildx imagetools create "$baseImage" --tag "$image" | ||
fi | ||
done |
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