mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-01-11 08:09:04 +01:00
Updated building images workflow
This commit is contained in:
parent
7f57f52b74
commit
833baae46d
133
.github/workflows/images_build.yml
vendored
133
.github/workflows/images_build.yml
vendored
@ -36,12 +36,14 @@ env:
|
|||||||
IMAGES_PREFIX: "zabbix-"
|
IMAGES_PREFIX: "zabbix-"
|
||||||
|
|
||||||
BASE_BUILD_NAME: "build-base"
|
BASE_BUILD_NAME: "build-base"
|
||||||
|
BASE_CACHE_FILE_NAME: "base_image_metadata.json"
|
||||||
|
BUILD_CACHE_FILE_NAME: "base_build_image_metadata.json"
|
||||||
|
|
||||||
MATRIX_FILE: "build.json"
|
MATRIX_FILE: "build.json"
|
||||||
DOCKERFILES_DIRECTORY: "./Dockerfiles"
|
DOCKERFILES_DIRECTORY: "./Dockerfiles"
|
||||||
|
|
||||||
OIDC_ISSUER: "https://token.actions.githubusercontent.com"
|
OIDC_ISSUER: "https://token.actions.githubusercontent.com"
|
||||||
IDENITY_REGEX: "https://github.com/zabbix/zabbix-docker/.github/"
|
IDENTITY_REGEX: "https://github.com/zabbix/zabbix-docker/.github/"
|
||||||
|
|
||||||
DOCKER_REGISTRY_TEST: "ghcr.io"
|
DOCKER_REGISTRY_TEST: "ghcr.io"
|
||||||
DOCKER_REPOSITORY_TEST: "zabbix"
|
DOCKER_REPOSITORY_TEST: "zabbix"
|
||||||
@ -52,7 +54,6 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
actions: write
|
|
||||||
outputs:
|
outputs:
|
||||||
os: ${{ steps.os.outputs.list }}
|
os: ${{ steps.os.outputs.list }}
|
||||||
database: ${{ steps.database.outputs.list }}
|
database: ${{ steps.database.outputs.list }}
|
||||||
@ -156,28 +157,6 @@ jobs:
|
|||||||
echo "current_branch=$github_ref" >> $GITHUB_OUTPUT
|
echo "current_branch=$github_ref" >> $GITHUB_OUTPUT
|
||||||
echo "sha_short=$sha_short" >> $GITHUB_OUTPUT
|
echo "sha_short=$sha_short" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Cleanup cache
|
|
||||||
shell: bash
|
|
||||||
env:
|
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
REPO: ${{ github.repository }}
|
|
||||||
BRANCH: ${{ steps.branch_info.outputs.current_branch }}
|
|
||||||
GH_RUN_ID: ${{ github.run_id }}
|
|
||||||
run: |
|
|
||||||
gh extension install actions/gh-actions-cache
|
|
||||||
|
|
||||||
cache_keys=$(gh actions-cache list -R "${REPO}" -B "${BRANCH}" -L 100 --sort created-at --order desc | cut -f 1)
|
|
||||||
|
|
||||||
## Setting this to not fail the workflow while deleting cache keys
|
|
||||||
set +e
|
|
||||||
echo "Deleting caches..."
|
|
||||||
for cache_key in $cache_keys
|
|
||||||
do
|
|
||||||
if [[ "$cache_key" == *"${GH_RUN_ID}" ]] && [[ "$cache_key" != *"${GH_RUN_ID}-image" ]]; then
|
|
||||||
gh actions-cache delete $cache_key -R "${REPO}" -B "${BRANCH}" --confirm
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
build_base:
|
build_base:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
name: Build base on ${{ matrix.os }}
|
name: Build base on ${{ matrix.os }}
|
||||||
@ -353,8 +332,8 @@ jobs:
|
|||||||
cache_from=()
|
cache_from=()
|
||||||
cache_to=()
|
cache_to=()
|
||||||
|
|
||||||
#cache_from+=("type=gha,scope=${IMAGE_TAG}")
|
cache_from+=("type=gha,scope=${IMAGE_TAG}")
|
||||||
cache_from+=("type=registry,ref=${IMAGE_TAG}")
|
#cache_from+=("type=registry,ref=${IMAGE_TAG}")
|
||||||
|
|
||||||
cache_to+=("type=gha,mode=max,scope=${IMAGE_TAG}")
|
cache_to+=("type=gha,mode=max,scope=${IMAGE_TAG}")
|
||||||
|
|
||||||
@ -404,6 +383,7 @@ jobs:
|
|||||||
org.opencontainers.image.revision=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
org.opencontainers.image.revision=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
||||||
org.opencontainers.image.created=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
org.opencontainers.image.created=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
||||||
cache-from: ${{ steps.cache_data.outputs.cache_from }}
|
cache-from: ${{ steps.cache_data.outputs.cache_from }}
|
||||||
|
cache-to: ${{ steps.cache_data.outputs.cache_to }}
|
||||||
|
|
||||||
- name: Sign the images with GitHub OIDC Token
|
- name: Sign the images with GitHub OIDC Token
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
@ -422,9 +402,9 @@ jobs:
|
|||||||
cosign sign --yes ${images}
|
cosign sign --yes ${images}
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Image digest
|
- name: Image metadata
|
||||||
env:
|
env:
|
||||||
CACHE_FILE_NAME: "base_image_metadata.json"
|
CACHE_FILE_NAME: ${{ env.BASE_CACHE_FILE_NAME }}
|
||||||
METADATA: ${{ steps.docker_build.outputs.metadata }}
|
METADATA: ${{ steps.docker_build.outputs.metadata }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Image metadata"
|
echo "::group::Image metadata"
|
||||||
@ -436,10 +416,10 @@ jobs:
|
|||||||
|
|
||||||
echo "${METADATA}" > "$CACHE_FILE_NAME"
|
echo "${METADATA}" > "$CACHE_FILE_NAME"
|
||||||
|
|
||||||
- name: Cache image digest
|
- name: Cache image metadata
|
||||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||||
with:
|
with:
|
||||||
path: "base_image_metadata.json"
|
path: ${{ env.BASE_CACHE_FILE_NAME }}
|
||||||
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.os }}-${{ github.run_id }}
|
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.os }}-${{ github.run_id }}
|
||||||
|
|
||||||
build_base_database:
|
build_base_database:
|
||||||
@ -547,21 +527,23 @@ jobs:
|
|||||||
flavor: |
|
flavor: |
|
||||||
latest=${{ (matrix.os == 'alpine') && (!contains(fromJSON('["workflow_dispatch"]'), github.event_name)) && ( needs.init_build.outputs.is_default_branch == 'true' ) }}
|
latest=${{ (matrix.os == 'alpine') && (!contains(fromJSON('["workflow_dispatch"]'), github.event_name)) && ( needs.init_build.outputs.is_default_branch == 'true' ) }}
|
||||||
|
|
||||||
- name: Download SHA256 tag of ${{ env.BASE_BUILD_NAME }}:${{ matrix.os }}
|
- name: Download metadata of ${{ env.BASE_BUILD_NAME }}:${{ matrix.os }}
|
||||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||||
with:
|
with:
|
||||||
path: "base_image_metadata.json"
|
path: ${{ env.BASE_CACHE_FILE_NAME }}
|
||||||
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.os }}-${{ github.run_id }}
|
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.os }}-${{ github.run_id }}
|
||||||
|
|
||||||
- name: Process ${{ env.BASE_BUILD_NAME }}:${{ matrix.os }} image metadata
|
- name: Process ${{ env.BASE_BUILD_NAME }}:${{ matrix.os }} image metadata
|
||||||
id: base_build
|
id: base_build
|
||||||
|
env:
|
||||||
|
CACHE_FILE_NAME: ${{ env.BASE_CACHE_FILE_NAME }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Base image metadata"
|
echo "::group::Base image metadata"
|
||||||
cat "base_image_metadata.json"
|
cat "${CACHE_FILE_NAME}"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
IMAGE_DIGEST=$(jq -r '."containerimage.digest"' "base_image_metadata.json")
|
IMAGE_DIGEST=$(jq -r '."containerimage.digest"' "${CACHE_FILE_NAME}")
|
||||||
IMAGE_NAME=$(jq -r '."image.name"' "base_image_metadata.json" | cut -d: -f1)
|
IMAGE_NAME=$(jq -r '."image.name"' "${CACHE_FILE_NAME}" | cut -d: -f1)
|
||||||
|
|
||||||
echo "base_build_image=${IMAGE_NAME}@${IMAGE_DIGEST}" >> $GITHUB_OUTPUT
|
echo "base_build_image=${IMAGE_NAME}@${IMAGE_DIGEST}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
@ -570,18 +552,18 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
BASE_IMAGE: ${{ steps.base_build.outputs.base_build_image }}
|
BASE_IMAGE: ${{ steps.base_build.outputs.base_build_image }}
|
||||||
OIDC_ISSUER: ${{ env.OIDC_ISSUER }}
|
OIDC_ISSUER: ${{ env.OIDC_ISSUER }}
|
||||||
IDENITY_REGEX: ${{ env.IDENITY_REGEX }}
|
IDENTITY_REGEX: ${{ env.IDENTITY_REGEX }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Image sign data"
|
echo "::group::Image sign data"
|
||||||
echo "OIDC issuer=$OIDC_ISSUER"
|
echo "OIDC issuer=$OIDC_ISSUER"
|
||||||
echo "Identity=$IDENITY_REGEX"
|
echo "Identity=$IDENTITY_REGEX"
|
||||||
echo "Image to verify=$BASE_IMAGE"
|
echo "Image to verify=$BASE_IMAGE"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "::group::Verify signature"
|
echo "::group::Verify signature"
|
||||||
cosign verify \
|
cosign verify \
|
||||||
--certificate-oidc-issuer-regexp "$OIDC_ISSUER" \
|
--certificate-oidc-issuer-regexp "$OIDC_ISSUER" \
|
||||||
--certificate-identity-regexp "$IDENITY_REGEX" \
|
--certificate-identity-regexp "$IDENTITY_REGEX" \
|
||||||
"$BASE_IMAGE"
|
"$BASE_IMAGE"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
@ -595,9 +577,9 @@ jobs:
|
|||||||
cache_from=()
|
cache_from=()
|
||||||
cache_to=()
|
cache_to=()
|
||||||
|
|
||||||
#cache_from+=("type=gha,scope=${BASE_IMAGE_TAG}")
|
cache_from+=("type=gha,scope=${BASE_IMAGE_TAG}")
|
||||||
#cache_from+=("type=registry,ref=${BASE_IMAGE_TAG}")
|
cache_from+=("type=registry,ref=${BASE_IMAGE_TAG}")
|
||||||
#cache_from+=("type=gha,scope=${IMAGE_TAG}")
|
cache_from+=("type=gha,scope=${IMAGE_TAG}")
|
||||||
cache_from+=("type=registry,ref=${IMAGE_TAG}")
|
cache_from+=("type=registry,ref=${IMAGE_TAG}")
|
||||||
|
|
||||||
cache_to+=("type=gha,mode=max,scope=${IMAGE_TAG}")
|
cache_to+=("type=gha,mode=max,scope=${IMAGE_TAG}")
|
||||||
@ -612,7 +594,6 @@ jobs:
|
|||||||
|
|
||||||
cache_from=$(printf '%s\n' "${cache_from[@]}")
|
cache_from=$(printf '%s\n' "${cache_from[@]}")
|
||||||
cache_to=$(printf '%s\n' "${cache_to[@]}")
|
cache_to=$(printf '%s\n' "${cache_to[@]}")
|
||||||
mkdir -p /tmp/.buildx-build-cache/
|
|
||||||
|
|
||||||
echo 'cache_from<<EOF' >> "$GITHUB_OUTPUT"
|
echo 'cache_from<<EOF' >> "$GITHUB_OUTPUT"
|
||||||
echo "$cache_from" >> "$GITHUB_OUTPUT"
|
echo "$cache_from" >> "$GITHUB_OUTPUT"
|
||||||
@ -649,7 +630,6 @@ jobs:
|
|||||||
labels: |
|
labels: |
|
||||||
org.opencontainers.image.revision=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
org.opencontainers.image.revision=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.revision'] }}
|
||||||
org.opencontainers.image.created=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
org.opencontainers.image.created=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.created'] }}
|
||||||
cache-from: ${{ steps.cache_data.outputs.cache_from }}
|
|
||||||
|
|
||||||
- name: Sign the images with GitHub OIDC Token
|
- name: Sign the images with GitHub OIDC Token
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
@ -668,9 +648,9 @@ jobs:
|
|||||||
cosign sign --yes ${images}
|
cosign sign --yes ${images}
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Image digest
|
- name: Image metadata
|
||||||
env:
|
env:
|
||||||
CACHE_FILE_NAME: "base_build_image_metadata.json"
|
CACHE_FILE_NAME: ${{ env.BUILD_CACHE_FILE_NAME }}
|
||||||
METADATA: ${{ steps.docker_build.outputs.metadata }}
|
METADATA: ${{ steps.docker_build.outputs.metadata }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Image metadata"
|
echo "::group::Image metadata"
|
||||||
@ -682,10 +662,10 @@ jobs:
|
|||||||
|
|
||||||
echo "${METADATA}" > "$CACHE_FILE_NAME"
|
echo "${METADATA}" > "$CACHE_FILE_NAME"
|
||||||
|
|
||||||
- name: Caching SHA256 tag of the image
|
- name: Cache image metadata
|
||||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||||
with:
|
with:
|
||||||
path: "base_build_image_metadata.json"
|
path: ${{ env.BUILD_CACHE_FILE_NAME }}
|
||||||
key: ${{ matrix.build }}-${{ matrix.os }}-${{ github.run_id }}
|
key: ${{ matrix.build }}-${{ matrix.os }}-${{ github.run_id }}
|
||||||
|
|
||||||
build_images:
|
build_images:
|
||||||
@ -702,7 +682,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
id-token: write
|
id-token: write
|
||||||
packages: write
|
packages: read
|
||||||
steps:
|
steps:
|
||||||
- name: Block egress traffic
|
- name: Block egress traffic
|
||||||
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
|
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
|
||||||
@ -831,11 +811,13 @@ jobs:
|
|||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: Install cosign
|
- name: Install cosign
|
||||||
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4
|
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4
|
||||||
with:
|
with:
|
||||||
cosign-release: 'v2.2.3'
|
cosign-release: 'v2.2.3'
|
||||||
|
|
||||||
- name: Check cosign version
|
- name: Check cosign version
|
||||||
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
run: cosign version
|
run: cosign version
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
@ -849,21 +831,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
driver-opts: image=moby/buildkit:master
|
driver-opts: image=moby/buildkit:master
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
|
||||||
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
|
|
||||||
with:
|
|
||||||
username: ${{ secrets.DOCKER_USERNAME }}
|
|
||||||
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
||||||
|
|
||||||
- name: Login to DockerHub
|
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES != 'true' }}
|
|
||||||
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
|
|
||||||
with:
|
|
||||||
registry: ghcr.io
|
|
||||||
username: ${{ github.actor }}
|
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
|
|
||||||
- name: Prepare Platform list
|
- name: Prepare Platform list
|
||||||
id: platform
|
id: platform
|
||||||
env:
|
env:
|
||||||
@ -919,26 +886,26 @@ jobs:
|
|||||||
tags: |
|
tags: |
|
||||||
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},prefix=${{ matrix.os }}-
|
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},prefix=${{ matrix.os }}-
|
||||||
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},suffix=-${{ matrix.os }}
|
type=semver,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},pattern={{version}},suffix=-${{ matrix.os }}
|
||||||
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},event=branch,prefix=${{ matrix.os }}-,suffix=-latest
|
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' && !contains(fromJSON('["workflow_dispatch"]'), github.event_name) }},event=branch,prefix=${{ matrix.os }}-,suffix=-latest
|
||||||
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' }},event=branch,suffix=-${{ matrix.os }}-latest
|
type=ref,enable=${{ needs.init_build.outputs.current_branch != 'trunk' && !contains(fromJSON('["workflow_dispatch"]'), github.event_name) }},event=branch,suffix=-${{ matrix.os }}-latest
|
||||||
type=raw,enable=${{ (needs.init_build.outputs.current_branch != 'trunk') && (needs.init_build.outputs.is_default_branch == 'true') }},value=${{matrix.os}}-latest
|
type=raw,enable=${{ (needs.init_build.outputs.current_branch != 'trunk') && (needs.init_build.outputs.is_default_branch == 'true') }},value=${{matrix.os}}-latest
|
||||||
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' }},event=branch,prefix=${{ matrix.os }}-
|
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' }},event=branch,prefix=${{ matrix.os }}-
|
||||||
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' || contains(fromJSON('["workflow_dispatch"]'), github.event_name) }},event=branch,suffix=-${{ matrix.os }}
|
type=ref,enable=${{ needs.init_build.outputs.current_branch == 'trunk' || contains(fromJSON('["workflow_dispatch"]'), github.event_name) }},event=branch,suffix=-${{ matrix.os }}
|
||||||
flavor: |
|
flavor: |
|
||||||
latest=${{ (matrix.os == 'alpine') && (!contains(fromJSON('["workflow_dispatch"]'), github.event_name)) && ( needs.init_build.outputs.is_default_branch == 'true' ) }}
|
latest=${{ (matrix.os == 'alpine') && (!contains(fromJSON('["workflow_dispatch"]'), github.event_name)) && ( needs.init_build.outputs.is_default_branch == 'true' ) }}
|
||||||
|
|
||||||
- name: Download SHA256 tag of ${{ steps.build_base_image.outputs.build_base }}:${{ matrix.os }}
|
- name: Download metadata of ${{ steps.build_base_image.outputs.build_base }}:${{ matrix.os }}
|
||||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||||
if: ${{ matrix.build != 'snmptraps' }}
|
if: ${{ matrix.build != 'snmptraps' }}
|
||||||
with:
|
with:
|
||||||
path: "base_build_image_metadata.json"
|
path: ${{ env.BUILD_CACHE_FILE_NAME }}
|
||||||
key: ${{ steps.build_base_image.outputs.build_base }}-${{ matrix.os }}-${{ github.run_id }}
|
key: ${{ steps.build_base_image.outputs.build_base }}-${{ matrix.os }}-${{ github.run_id }}
|
||||||
|
|
||||||
- name: Retrieve ${{ steps.build_base_image.outputs.build_base }}:${{ matrix.os }} SHA256 tag
|
- name: Process ${{ steps.build_base_image.outputs.build_base }}:${{ matrix.os }} image metadata
|
||||||
id: base_build
|
id: base_build
|
||||||
if: ${{ matrix.build != 'snmptraps' }}
|
if: ${{ matrix.build != 'snmptraps' }}
|
||||||
env:
|
env:
|
||||||
CACHE_FILE_NAME: "base_build_image_metadata.json"
|
CACHE_FILE_NAME: ${{ env.BUILD_CACHE_FILE_NAME }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Base build image metadata"
|
echo "::group::Base build image metadata"
|
||||||
cat "${CACHE_FILE_NAME}"
|
cat "${CACHE_FILE_NAME}"
|
||||||
@ -954,22 +921,23 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
BASE_IMAGE: ${{ steps.base_build.outputs.base_build_image }}
|
BASE_IMAGE: ${{ steps.base_build.outputs.base_build_image }}
|
||||||
OIDC_ISSUER: ${{ env.OIDC_ISSUER }}
|
OIDC_ISSUER: ${{ env.OIDC_ISSUER }}
|
||||||
IDENITY_REGEX: ${{ env.IDENITY_REGEX }}
|
IDENTITY_REGEX: ${{ env.IDENTITY_REGEX }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Image sign data"
|
echo "::group::Image sign data"
|
||||||
echo "OIDC issuer=$OIDC_ISSUER"
|
echo "OIDC issuer=${OIDC_ISSUER}"
|
||||||
echo "Identity=$IDENITY_REGEX"
|
echo "Identity=${IDENTITY_REGEX}"
|
||||||
echo "Image to verify=$BASE_IMAGE"
|
echo "Image to verify=${BASE_IMAGE}"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "::group::Verify signature"
|
echo "::group::Verify signature"
|
||||||
cosign verify \
|
cosign verify \
|
||||||
--certificate-oidc-issuer-regexp "$OIDC_ISSUER" \
|
--certificate-oidc-issuer-regexp "${OIDC_ISSUER}" \
|
||||||
--certificate-identity-regexp "$IDENITY_REGEX" \
|
--certificate-identity-regexp "${IDENTITY_REGEX}" \
|
||||||
"$BASE_IMAGE"
|
"${BASE_IMAGE}"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Prepare cache data
|
- name: Prepare cache data
|
||||||
|
if: ${{ matrix.build != 'snmptraps' }}
|
||||||
id: cache_data
|
id: cache_data
|
||||||
env:
|
env:
|
||||||
BASE_IMAGE_TAG: ${{ steps.base_build.outputs.base_build_image }}
|
BASE_IMAGE_TAG: ${{ steps.base_build.outputs.base_build_image }}
|
||||||
@ -977,7 +945,6 @@ jobs:
|
|||||||
cache_from=()
|
cache_from=()
|
||||||
cache_to=()
|
cache_to=()
|
||||||
|
|
||||||
cache_from+=("type=gha,scope=${BASE_IMAGE_TAG}")
|
|
||||||
cache_from+=("type=registry,ref=${BASE_IMAGE_TAG}")
|
cache_from+=("type=registry,ref=${BASE_IMAGE_TAG}")
|
||||||
|
|
||||||
echo "::group::Cache from data"
|
echo "::group::Cache from data"
|
||||||
@ -990,12 +957,19 @@ jobs:
|
|||||||
echo "$cache_from" >> "$GITHUB_OUTPUT"
|
echo "$cache_from" >> "$GITHUB_OUTPUT"
|
||||||
echo 'EOF' >> "$GITHUB_OUTPUT"
|
echo 'EOF' >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
|
- name: Login to DockerHub
|
||||||
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
|
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
|
||||||
- name: Build and push image
|
- name: Build and push image
|
||||||
id: docker_build
|
id: docker_build
|
||||||
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0
|
uses: docker/build-push-action@4a13e500e55cf31b7a5d59a38ab2040ab0f42f56 # v5.1.0
|
||||||
with:
|
with:
|
||||||
context: ${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/${{ matrix.os }}
|
context: ${{ format('{0}/{1}/{2}', env.DOCKERFILES_DIRECTORY, matrix.build, matrix.os) }}
|
||||||
file: ${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/${{ matrix.os }}/Dockerfile
|
file: ${{ format('{0}/{1}/{2}/Dockerfile', env.DOCKERFILES_DIRECTORY, matrix.build, matrix.os) }}
|
||||||
platforms: ${{ steps.platform.outputs.list }}
|
platforms: ${{ steps.platform.outputs.list }}
|
||||||
push: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
push: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
@ -1022,6 +996,7 @@ jobs:
|
|||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
- name: Image metadata
|
- name: Image metadata
|
||||||
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
env:
|
env:
|
||||||
METADATA: ${{ steps.docker_build.outputs.metadata }}
|
METADATA: ${{ steps.docker_build.outputs.metadata }}
|
||||||
run: |
|
run: |
|
||||||
|
31
.github/workflows/images_build_rhel.yml
vendored
31
.github/workflows/images_build_rhel.yml
vendored
@ -29,6 +29,7 @@ permissions:
|
|||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
TRUNK_ONLY_EVENT: ${{ contains(fromJSON('["schedule"]'), github.event_name) }}
|
||||||
AUTO_PUSH_IMAGES: ${{ ! contains(fromJSON('["workflow_dispatch", "push"]'), github.event_name) && vars.AUTO_PUSH_IMAGES }}
|
AUTO_PUSH_IMAGES: ${{ ! contains(fromJSON('["workflow_dispatch", "push"]'), github.event_name) && vars.AUTO_PUSH_IMAGES }}
|
||||||
|
|
||||||
LATEST_BRANCH: ${{ github.event.repository.default_branch }}
|
LATEST_BRANCH: ${{ github.event.repository.default_branch }}
|
||||||
@ -164,7 +165,7 @@ jobs:
|
|||||||
echo "secret_prefix=RHEL_${github_ref//.}" >> $GITHUB_OUTPUT
|
echo "secret_prefix=RHEL_${github_ref//.}" >> $GITHUB_OUTPUT
|
||||||
echo "sha_short=$sha_short" >> $GITHUB_OUTPUT
|
echo "sha_short=$sha_short" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Cleanup cache
|
- name: Cleanup existing cache
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
@ -205,11 +206,13 @@ jobs:
|
|||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
- name: Install cosign
|
- name: Install cosign
|
||||||
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4
|
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4
|
||||||
with:
|
with:
|
||||||
cosign-release: 'v2.2.3'
|
cosign-release: 'v2.2.3'
|
||||||
|
|
||||||
- name: Check cosign version
|
- name: Check cosign version
|
||||||
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
run: cosign version
|
run: cosign version
|
||||||
|
|
||||||
- name: Fix string case
|
- name: Fix string case
|
||||||
@ -231,7 +234,7 @@ jobs:
|
|||||||
id: build_image
|
id: build_image
|
||||||
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
|
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
|
||||||
with:
|
with:
|
||||||
context: ${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel
|
context: ${{ format('{0}/{1}/rhel', env.DOCKERFILES_DIRECTORY, matrix.build) }}
|
||||||
layers: false
|
layers: false
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
containerfiles: |
|
containerfiles: |
|
||||||
@ -240,7 +243,7 @@ jobs:
|
|||||||
--pull
|
--pull
|
||||||
--iidfile=${{ github.workspace }}/iidfile
|
--iidfile=${{ github.workspace }}/iidfile
|
||||||
|
|
||||||
- name: Prepare image metadata
|
- name: Image metadata
|
||||||
id: image_metadata
|
id: image_metadata
|
||||||
env:
|
env:
|
||||||
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
|
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
|
||||||
@ -279,7 +282,6 @@ jobs:
|
|||||||
IMAGE_TAG: ${{ steps.image_metadata.outputs.image_tag }}
|
IMAGE_TAG: ${{ steps.image_metadata.outputs.image_tag }}
|
||||||
IMAGE_TAG_ID: ${{ steps.image_metadata.outputs.image_tag_id }}
|
IMAGE_TAG_ID: ${{ steps.image_metadata.outputs.image_tag_id }}
|
||||||
IMAGE_DIR: ${{ env.IMAGE_DIR }}
|
IMAGE_DIR: ${{ env.IMAGE_DIR }}
|
||||||
GITHUB_WORKSPACE: ${{ github.workspace }}
|
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Result"
|
echo "::group::Result"
|
||||||
echo "Image ${IMAGE_TAG} location: \"${IMAGE_DIR}/${IMAGE_TAG_ID}\""
|
echo "Image ${IMAGE_TAG} location: \"${IMAGE_DIR}/${IMAGE_TAG_ID}\""
|
||||||
@ -310,13 +312,14 @@ jobs:
|
|||||||
if: ${{ (cancelled() || failure()) && ( steps.push_image.outcome == 'failure' || steps.push_image.outcome == 'cancelled') }}
|
if: ${{ (cancelled() || failure()) && ( steps.push_image.outcome == 'failure' || steps.push_image.outcome == 'cancelled') }}
|
||||||
env:
|
env:
|
||||||
IMAGE_TAG_ID: ${{ steps.image_metadata.outputs.image_tag_id }}
|
IMAGE_TAG_ID: ${{ steps.image_metadata.outputs.image_tag_id }}
|
||||||
|
IMAGE_DIR: ${{ env.IMAGE_DIR }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Removing orphaned image"
|
echo "::group::Removing orphaned image"
|
||||||
rm -rf "${IMAGE_DIR}/${IMAGE_TAG_ID}"
|
rm -rf "${IMAGE_DIR}/${IMAGE_TAG_ID}"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
build_base_database:
|
build_base_database:
|
||||||
timeout-minutes: 180
|
timeout-minutes: 90
|
||||||
needs: [ "build_base", "init_build"]
|
needs: [ "build_base", "init_build"]
|
||||||
name: Build ${{ matrix.build }} base (${{ matrix.arch }})
|
name: Build ${{ matrix.build }} base (${{ matrix.arch }})
|
||||||
strategy:
|
strategy:
|
||||||
@ -348,7 +351,7 @@ jobs:
|
|||||||
${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_tag
|
${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_tag
|
||||||
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.arch }}-${{ github.run_id }}
|
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.arch }}-${{ github.run_id }}
|
||||||
|
|
||||||
- name: Pull ${{ env.BASE_BUILD_NAME }}:${{ matrix.arch }} image
|
- name: Pull ${{ env.BASE_BUILD_NAME }}:${{ matrix.arch }} image from local storage
|
||||||
id: base_build
|
id: base_build
|
||||||
env:
|
env:
|
||||||
MATRIX_ARCH: ${{ matrix.arch }}
|
MATRIX_ARCH: ${{ matrix.arch }}
|
||||||
@ -389,7 +392,7 @@ jobs:
|
|||||||
id: build_image
|
id: build_image
|
||||||
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
|
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
|
||||||
with:
|
with:
|
||||||
context: ${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel
|
context: ${{ format('{0}/{1}/rhel', env.DOCKERFILES_DIRECTORY, matrix.build) }}
|
||||||
layers: false
|
layers: false
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
containerfiles: |
|
containerfiles: |
|
||||||
@ -423,7 +426,7 @@ jobs:
|
|||||||
echo "image_tag_id=${TAG_ID}" >> $GITHUB_OUTPUT
|
echo "image_tag_id=${TAG_ID}" >> $GITHUB_OUTPUT
|
||||||
echo "image_tag=${IMAGE_TAG}" >> $GITHUB_OUTPUT
|
echo "image_tag=${IMAGE_TAG}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Cache image digest
|
- name: Cache image metadata
|
||||||
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||||
with:
|
with:
|
||||||
path: |
|
path: |
|
||||||
@ -437,7 +440,6 @@ jobs:
|
|||||||
IMAGE_TAG: ${{ steps.image_metadata.outputs.image_tag }}
|
IMAGE_TAG: ${{ steps.image_metadata.outputs.image_tag }}
|
||||||
IMAGE_TAG_ID: ${{ steps.image_metadata.outputs.image_tag_id }}
|
IMAGE_TAG_ID: ${{ steps.image_metadata.outputs.image_tag_id }}
|
||||||
IMAGE_DIR: ${{ env.IMAGE_DIR }}
|
IMAGE_DIR: ${{ env.IMAGE_DIR }}
|
||||||
GITHUB_WORKSPACE: ${{ github.workspace }}
|
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Result"
|
echo "::group::Result"
|
||||||
echo "podman push \"${IMAGE_TAG}\" dir:\"${IMAGE_DIR}/${IMAGE_TAG_ID}\""
|
echo "podman push \"${IMAGE_TAG}\" dir:\"${IMAGE_DIR}/${IMAGE_TAG_ID}\""
|
||||||
@ -468,13 +470,14 @@ jobs:
|
|||||||
if: ${{ (cancelled() || failure()) && ( steps.push_image.outcome == 'failure' || steps.push_image.outcome == 'cancelled') }}
|
if: ${{ (cancelled() || failure()) && ( steps.push_image.outcome == 'failure' || steps.push_image.outcome == 'cancelled') }}
|
||||||
env:
|
env:
|
||||||
IMAGE_TAG_ID: ${{ steps.image_metadata.outputs.image_tag_id }}
|
IMAGE_TAG_ID: ${{ steps.image_metadata.outputs.image_tag_id }}
|
||||||
|
IMAGE_DIR: ${{ env.IMAGE_DIR }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Removing orphaned image"
|
echo "::group::Removing orphaned image"
|
||||||
rm -rf "${IMAGE_DIR}/${IMAGE_TAG_ID}"
|
rm -rf "${IMAGE_DIR}/${IMAGE_TAG_ID}"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
build_images:
|
build_images:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 30
|
||||||
needs: [ "build_base_database", "init_build"]
|
needs: [ "build_base_database", "init_build"]
|
||||||
name: Build ${{ matrix.build }} image (${{ matrix.arch }})
|
name: Build ${{ matrix.build }} image (${{ matrix.arch }})
|
||||||
strategy:
|
strategy:
|
||||||
@ -580,7 +583,7 @@ jobs:
|
|||||||
id: build_image
|
id: build_image
|
||||||
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
|
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
|
||||||
with:
|
with:
|
||||||
context: ${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel
|
context: ${{ format('{0}/{1}/rhel', env.DOCKERFILES_DIRECTORY, matrix.build) }}
|
||||||
layers: false
|
layers: false
|
||||||
tags: ${{ steps.meta.outputs.tags }}
|
tags: ${{ steps.meta.outputs.tags }}
|
||||||
labels: |
|
labels: |
|
||||||
@ -671,9 +674,13 @@ jobs:
|
|||||||
|
|
||||||
- name: Post build image
|
- name: Post build image
|
||||||
if: ${{ success() || failure() }}
|
if: ${{ success() || failure() }}
|
||||||
|
env:
|
||||||
|
GITHUB_WORKSPACE: ${{ github.workspace }}
|
||||||
run: |
|
run: |
|
||||||
echo "::group::Result"
|
echo "::group::Result"
|
||||||
|
|
||||||
|
rm -rf "$GITHUB_WORKSPACE/iidfile"
|
||||||
|
|
||||||
echo "Removing working containers"
|
echo "Removing working containers"
|
||||||
buildah rm -a 2>/dev/null || true
|
buildah rm -a 2>/dev/null || true
|
||||||
echo "Removing container data in storage not controlled by podman"
|
echo "Removing container data in storage not controlled by podman"
|
||||||
@ -686,7 +693,7 @@ jobs:
|
|||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
clear_artifacts:
|
clear_artifacts:
|
||||||
timeout-minutes: 90
|
timeout-minutes: 10
|
||||||
needs: [ "build_images", "init_build"]
|
needs: [ "build_images", "init_build"]
|
||||||
name: Clear ${{ matrix.build }} image cache (${{ matrix.arch }})
|
name: Clear ${{ matrix.build }} image cache (${{ matrix.arch }})
|
||||||
strategy:
|
strategy:
|
||||||
|
Loading…
Reference in New Issue
Block a user