mirror of
https://github.com/yannh/kubeconform.git
synced 2026-02-18 17:37:03 +00:00
Fix for 196: Multi-architecture image (#204)
* 196: qemu * 196: multi-arch; see also https://blog.devgenius.io/goreleaser-build-multi-arch-docker-images-8dd9a7903675
This commit is contained in:
parent
c7cd7c09de
commit
8ec7dd051a
2 changed files with 49 additions and 6 deletions
3
.github/workflows/main.yml
vendored
3
.github/workflows/main.yml
vendored
|
|
@ -38,6 +38,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0 # https://github.com/goreleaser/goreleaser-action/issues/56
|
fetch-depth: 0 # https://github.com/goreleaser/goreleaser-action/issues/56
|
||||||
|
|
||||||
|
- uses: docker/setup-qemu-action@v2
|
||||||
|
- uses: docker/setup-buildx-action@v2
|
||||||
|
|
||||||
- name: goreleaser
|
- name: goreleaser
|
||||||
run: |
|
run: |
|
||||||
echo "${{ github.token }}" | docker login https://ghcr.io -u ${GITHUB_ACTOR} --password-stdin
|
echo "${{ github.token }}" | docker login https://ghcr.io -u ${GITHUB_ACTOR} --password-stdin
|
||||||
|
|
|
||||||
|
|
@ -32,23 +32,63 @@ archives:
|
||||||
|
|
||||||
dockers:
|
dockers:
|
||||||
- image_templates:
|
- image_templates:
|
||||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest'
|
|
||||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}'
|
|
||||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-amd64'
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-amd64'
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-amd64'
|
||||||
dockerfile: Dockerfile
|
dockerfile: Dockerfile
|
||||||
|
use: buildx
|
||||||
build_flag_templates:
|
build_flag_templates:
|
||||||
|
- "--pull"
|
||||||
- "--platform=linux/amd64"
|
- "--platform=linux/amd64"
|
||||||
goos: linux
|
goos: linux
|
||||||
goarch: amd64
|
goarch: amd64
|
||||||
- image_templates:
|
- image_templates:
|
||||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-alpine'
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-arm64'
|
||||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-alpine'
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-arm64'
|
||||||
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-amd64-alpine'
|
dockerfile: Dockerfile
|
||||||
dockerfile: Dockerfile-alpine
|
use: buildx
|
||||||
build_flag_templates:
|
build_flag_templates:
|
||||||
|
- "--pull"
|
||||||
|
- "--platform=linux/arm64"
|
||||||
|
goos: linux
|
||||||
|
goarch: arm64
|
||||||
|
- image_templates:
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-amd64-alpine'
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-amd64-alpine'
|
||||||
|
dockerfile: Dockerfile-alpine
|
||||||
|
use: buildx
|
||||||
|
build_flag_templates:
|
||||||
|
- "--pull"
|
||||||
- "--platform=linux/amd64"
|
- "--platform=linux/amd64"
|
||||||
goos: linux
|
goos: linux
|
||||||
goarch: amd64
|
goarch: amd64
|
||||||
|
- image_templates:
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-arm64-alpine'
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-arm64-alpine'
|
||||||
|
dockerfile: Dockerfile-alpine
|
||||||
|
use: buildx
|
||||||
|
build_flag_templates:
|
||||||
|
- "--pull"
|
||||||
|
- "--platform=linux/arm64"
|
||||||
|
goos: linux
|
||||||
|
goarch: arm64
|
||||||
|
|
||||||
|
docker_manifests:
|
||||||
|
- name_template: 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}'
|
||||||
|
image_templates:
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-amd64'
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-arm64'
|
||||||
|
- name_template: 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest'
|
||||||
|
image_templates:
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-amd64'
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-arm64'
|
||||||
|
- name_template: 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-alpine'
|
||||||
|
image_templates:
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-amd64-alpine'
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:latest-arm64-alpine'
|
||||||
|
- name_template: 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-alpine'
|
||||||
|
image_templates:
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-amd64-alpine'
|
||||||
|
- 'ghcr.io/{{.Env.GIT_OWNER}}/kubeconform:{{ .Tag }}-arm64-alpine'
|
||||||
|
|
||||||
checksum:
|
checksum:
|
||||||
name_template: 'CHECKSUMS'
|
name_template: 'CHECKSUMS'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue