192 lines
5.7 KiB
YAML
192 lines
5.7 KiB
YAML
name: Container Images
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- "*"
|
|
paths:
|
|
- 'images/**'
|
|
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- 'images/**'
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
env:
|
|
PLATFORMS: linux/amd64
|
|
|
|
jobs:
|
|
changes:
|
|
permissions:
|
|
contents: read # for dorny/paths-filter to fetch a list of changed files
|
|
pull-requests: read # for dorny/paths-filter to read pull requests
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
custom-error-pages: ${{ steps.filter.outputs.custom-error-pages }}
|
|
cfssl: ${{ steps.filter.outputs.cfssl }}
|
|
fastcgi-helloserver: ${{ steps.filter.outputs.fastcgi-helloserver }}
|
|
e2e-test-echo: ${{ steps.filter.outputs.e2e-test-echo }}
|
|
go-grpc-greeter-server: ${{ steps.filter.outputs.go-grpc-greeter-server }}
|
|
httpbun: ${{ steps.filter.outputs.httpbun }}
|
|
kube-webhook-certgen: ${{ steps.filter.outputs.kube-webhook-certgen }}
|
|
ext-auth-example-authsvc: ${{ steps.filter.outputs.ext-auth-example-authsvc }}
|
|
nginx: ${{ steps.filter.outputs.nginx }}
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
|
id: filter
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
filters: |
|
|
custom-error-pages:
|
|
- 'images/custom-error-pages/**'
|
|
cfssl:
|
|
- 'images/cfssl/**'
|
|
fastcgi-helloserver:
|
|
- 'images/fastcgi-helloserver/**'
|
|
e2e-test-echo:
|
|
- 'images/e2e-test-echo/**'
|
|
go-grpc-greeter-server:
|
|
- 'images/go-grpc-greeter-server/**'
|
|
httpbun:
|
|
- 'images/httpbun/**'
|
|
kube-webhook-certgen:
|
|
- 'images/kube-webhook-certgen/**'
|
|
ext-auth-example-authsvc:
|
|
- 'images/ext-auth-example-authsvc/**'
|
|
nginx:
|
|
- 'images/nginx/**'
|
|
|
|
#### TODO: Make the below jobs 'less dumb' and use the job name as parameter (the github.job context does not work here)
|
|
cfssl:
|
|
needs: changes
|
|
if: |
|
|
(needs.changes.outputs.cfssl == 'true')
|
|
uses: ./.github/workflows/zz-tmpl-images.yaml
|
|
with:
|
|
name: cfssl
|
|
secrets: inherit
|
|
|
|
custom-error-pages:
|
|
needs: changes
|
|
if: |
|
|
(needs.changes.outputs.custom-error-pages == 'true')
|
|
uses: ./.github/workflows/zz-tmpl-images.yaml
|
|
with:
|
|
name: custom-error-pages
|
|
secrets: inherit
|
|
|
|
e2e-test-echo:
|
|
needs: changes
|
|
if: |
|
|
(needs.changes.outputs.e2e-test-echo == 'true')
|
|
uses: ./.github/workflows/zz-tmpl-images.yaml
|
|
with:
|
|
name: e2e-test-echo
|
|
secrets: inherit
|
|
|
|
ext-auth-example-authsvc:
|
|
needs: changes
|
|
if: |
|
|
(needs.changes.outputs.ext-auth-example-authsvc == 'true')
|
|
uses: ./.github/workflows/zz-tmpl-images.yaml
|
|
with:
|
|
name: ext-auth-example-authsvc
|
|
secrets: inherit
|
|
|
|
fastcgi-helloserver:
|
|
needs: changes
|
|
if: |
|
|
(needs.changes.outputs.fastcgi-helloserver == 'true')
|
|
uses: ./.github/workflows/zz-tmpl-images.yaml
|
|
with:
|
|
name: fastcgi-helloserver
|
|
secrets: inherit
|
|
|
|
go-grpc-greeter-server:
|
|
needs: changes
|
|
if: |
|
|
(needs.changes.outputs.go-grpc-greeter-server == 'true')
|
|
uses: ./.github/workflows/zz-tmpl-images.yaml
|
|
with:
|
|
name: go-grpc-greeter-server
|
|
secrets: inherit
|
|
|
|
httpbun:
|
|
needs: changes
|
|
if: |
|
|
(needs.changes.outputs.httpbun == 'true')
|
|
uses: ./.github/workflows/zz-tmpl-images.yaml
|
|
with:
|
|
name: httpbun
|
|
secrets: inherit
|
|
|
|
kube-webhook-certgen:
|
|
runs-on: ubuntu-latest
|
|
needs: changes
|
|
if: |
|
|
(needs.changes.outputs.kube-webhook-certgen == 'true')
|
|
strategy:
|
|
matrix:
|
|
k8s: [v1.28.13, v1.29.8, v1.30.4, v1.31.0]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
|
|
- name: Get go version
|
|
run: echo "GOLANG_VERSION=$(cat GOLANG_VERSION)" >> $GITHUB_ENV
|
|
|
|
- name: Set up Go
|
|
id: go
|
|
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
|
with:
|
|
go-version: ${{ env.GOLANG_VERSION }}
|
|
check-latest: true
|
|
- name: image build
|
|
run: |
|
|
cd images/ && make NAME=kube-webhook-certgen build
|
|
- name: Create Kubernetes cluster
|
|
id: kind
|
|
run: |
|
|
kind create cluster --image=kindest/node:${{ matrix.k8s }}
|
|
- name: image test
|
|
run: |
|
|
cd images/ && make NAME=kube-webhook-certgen test test-e2e
|
|
|
|
nginx:
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
runs-on: ubuntu-latest
|
|
needs: changes
|
|
if: |
|
|
(github.event_name == 'push' && github.ref == 'refs/heads/main' && needs.changes.outputs.nginx == 'true')
|
|
env:
|
|
PLATFORMS: linux/amd64,linux/arm,linux/arm64,linux/s390x
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db # v3.6.1
|
|
with:
|
|
version: latest
|
|
platforms: ${{ env.PLATFORMS }}
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: build-image
|
|
run: |
|
|
export TAG=$(cat images/nginx/TAG)
|
|
cd images/nginx/rootfs && docker buildx build --platform=${{ env.PLATFORMS }} --push -t ingressnginx/nginx:${TAG} .
|