zabbix-docker/.github/workflows/images_build_rhel.yml

639 lines
24 KiB
YAML
Raw Normal View History

2023-02-03 07:05:11 +01:00
name: Build images (RedHat)
on:
release:
types:
- published
2024-02-14 09:25:33 +01:00
push:
branches:
- '[0-9]+.[0-9]+'
- 'trunk'
paths:
- 'Dockerfiles/*/rhel/*'
- 'build.json'
- '!**/README.md'
- '.github/workflows/images_build_rhel.yml'
2024-02-11 09:12:08 +01:00
workflow_dispatch:
2024-02-14 11:02:56 +01:00
inputs:
publish_images:
description: 'Publish images'
required: true
default: false
type: boolean
2023-02-03 07:05:11 +01:00
defaults:
run:
shell: bash
2024-02-11 16:49:23 +01:00
permissions:
contents: read
2023-02-03 07:05:11 +01:00
env:
2024-02-14 09:25:33 +01:00
AUTO_PUSH_IMAGES: ${{ contains(fromJSON('["workflow_dispatch", "push"]'), github.event_name) && 'false' || vars.AUTO_PUSH_IMAGES }}
2024-02-11 09:12:08 +01:00
2023-02-03 07:05:11 +01:00
LATEST_BRANCH: ${{ github.event.repository.default_branch }}
2024-02-11 10:07:29 +01:00
TRUNK_GIT_BRANCH: "refs/heads/trunk"
2024-02-11 09:12:08 +01:00
IMAGES_PREFIX: "zabbix-"
2023-02-03 07:05:11 +01:00
BASE_BUILD_NAME: "build-base"
2024-02-11 09:12:08 +01:00
2024-02-14 09:25:33 +01:00
MATRIX_FILE: "build.json"
2024-02-11 09:12:08 +01:00
DOCKERFILES_DIRECTORY: "Dockerfiles"
OIDC_ISSUER: "https://token.actions.githubusercontent.com"
IDENITY_REGEX: "https://github.com/zabbix/zabbix-docker/.github/"
2023-02-03 07:05:11 +01:00
REGISTRY: "quay.io"
REGISTRY_NAMESPACE: "redhat-isv-containers"
2024-02-11 09:12:08 +01:00
PREFLIGHT_IMAGE: "quay.io/opdev/preflight:stable"
2023-02-03 07:05:11 +01:00
PFLT_LOGLEVEL: "warn"
PFLT_ARTIFACTS: "/tmp/artifacts"
2024-02-14 18:56:07 +01:00
IMAGE_DIR: "/tmp/images"
2023-02-03 07:05:11 +01:00
jobs:
init_build:
name: Initialize build
2024-02-11 09:12:08 +01:00
runs-on: ubuntu-latest
permissions:
contents: read
2023-02-03 07:05:11 +01:00
outputs:
2024-02-14 09:25:33 +01:00
platforms: ${{ steps.platform_list.outputs.list }}
2023-02-03 07:05:11 +01:00
components: ${{ steps.components.outputs.list }}
is_default_branch: ${{ steps.branch_info.outputs.is_default_branch }}
current_branch: ${{ steps.branch_info.outputs.current_branch }}
sha_short: ${{ steps.branch_info.outputs.sha_short }}
2024-02-14 09:25:33 +01:00
secret_prefix: ${{ steps.branch_info.outputs.secret_prefix }}
2023-02-03 07:05:11 +01:00
steps:
2024-02-11 09:12:08 +01:00
- name: Block egress traffic
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
github.com:443
2023-02-03 07:05:11 +01:00
- name: Checkout repository
2024-02-11 17:44:17 +01:00
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2023-02-03 07:05:11 +01:00
with:
fetch-depth: 1
2024-02-14 09:25:33 +01:00
- name: Check ${{ env.MATRIX_FILE }} file
id: build_exists
env:
MATRIX_FILE: ${{ env.MATRIX_FILE }}
run: |
if [[ ! -f "$MATRIX_FILE" ]]; then
echo "::error::File $MATRIX_FILE is missing"
exit 1
fi
- name: Prepare Platform list
id: platform_list
env:
MATRIX_FILE: ${{ env.MATRIX_FILE }}
run: |
platform_list=$(jq -r '.["os-linux"].rhel | @json' "$MATRIX_FILE")
echo "::group::Platform List"
echo "$platform_list"
echo "::endgroup::"
echo "list=$platform_list" >> $GITHUB_OUTPUT
- name: Prepare Zabbix component list
id: components
env:
MATRIX_FILE: ${{ env.MATRIX_FILE }}
run: |
component_list=$(jq -r '.components |map_values(select(.rhel == true)) | keys | @json' "$MATRIX_FILE")
echo "::group::Zabbix Component List"
echo "$component_list"
echo "::endgroup::"
echo "list=$component_list" >> $GITHUB_OUTPUT
2023-02-03 07:05:11 +01:00
- name: Get branch info
id: branch_info
2024-02-11 09:12:08 +01:00
shell: bash
env:
LATEST_BRANCH: ${{ env.LATEST_BRANCH }}
2024-02-11 10:07:29 +01:00
github_ref: ${{ github.ref }}
2023-02-03 07:05:11 +01:00
run: |
result=false
2024-02-11 09:12:08 +01:00
sha_short=$(git rev-parse --short HEAD)
2023-02-03 07:05:11 +01:00
if [[ "$github_ref" == "refs/tags/"* ]]; then
github_ref=${github_ref%.*}
fi
github_ref=${github_ref##*/}
2024-02-11 09:12:08 +01:00
if [[ "$github_ref" == "$LATEST_BRANCH" ]]; then
result=true
fi
echo "::group::Branch data"
echo "is_default_branch - $result"
echo "current_branch - $github_ref"
2024-02-14 09:25:33 +01:00
echo "secret_prefix=RHEL_${github_ref//.}"
2024-02-11 09:12:08 +01:00
echo "sha_short - $sha_short"
echo "::endgroup::"
2023-02-03 07:05:11 +01:00
echo "is_default_branch=$result" >> $GITHUB_OUTPUT
2024-02-11 09:12:08 +01:00
echo "current_branch=$github_ref" >> $GITHUB_OUTPUT
2024-02-14 09:25:33 +01:00
echo "secret_prefix=RHEL_${github_ref//.}" >> $GITHUB_OUTPUT
2024-02-11 09:12:08 +01:00
echo "sha_short=$sha_short" >> $GITHUB_OUTPUT
2023-02-03 07:05:11 +01:00
build_base:
timeout-minutes: 30
2024-02-11 09:12:08 +01:00
name: Build ${{ matrix.build }} base (${{ matrix.arch }})
2023-02-03 07:05:11 +01:00
needs: ["init_build"]
strategy:
fail-fast: false
matrix:
2024-02-11 09:12:08 +01:00
build: [build-base]
2024-02-14 09:25:33 +01:00
arch: ${{ fromJson(needs.init_build.outputs.platforms) }}
2024-02-11 09:12:08 +01:00
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
permissions:
contents: read
2023-02-03 07:05:11 +01:00
steps:
- name: Checkout repository
2024-02-11 17:44:17 +01:00
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2023-02-03 07:05:11 +01:00
with:
fetch-depth: 1
2024-02-11 09:12:08 +01:00
- name: Install cosign
uses: sigstore/cosign-installer@e1523de7571e31dbe865fd2e80c5c7c23ae71eb4
with:
cosign-release: 'v2.2.3'
- name: Check cosign version
run: cosign version
- name: Fix string case
id: lc
env:
ARCH: ${{ matrix.arch }}
run: |
echo "arch=${ARCH,,}" >> $GITHUB_OUTPUT
2023-02-03 07:05:11 +01:00
- name: Generate tags
id: meta
2024-02-11 17:44:17 +01:00
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
2023-02-03 07:05:11 +01:00
with:
2024-02-11 09:12:08 +01:00
images: ${{ env.IMAGES_PREFIX }}${{ matrix.build }}
2023-02-03 07:05:11 +01:00
tags: |
2024-02-11 09:12:08 +01:00
type=sha,suffix=-${{ steps.lc.outputs.arch }}
2023-02-03 07:05:11 +01:00
- name: Build Zabbix Build Base
id: build_image
2024-02-11 17:44:17 +01:00
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
2023-02-03 07:05:11 +01:00
with:
2024-02-11 09:12:08 +01:00
context: ${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel
2023-02-03 07:05:11 +01:00
layers: false
tags: ${{ steps.meta.outputs.tags }}
containerfiles: |
2024-02-11 09:12:08 +01:00
${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel/Dockerfile
2023-02-03 07:05:11 +01:00
extra-args: |
--pull
2024-02-11 09:12:08 +01:00
- name: Image digest
env:
2024-02-14 18:56:07 +01:00
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
2024-02-11 09:12:08 +01:00
CACHE_FILE_NAME: ${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}
run: |
2024-02-14 18:56:07 +01:00
DIGEST=$(podman inspect "${IMAGE_TAG}" --format "{{ index .RepoDigests 0}}" | cut -d '@' -f2)
2024-02-14 19:39:17 +01:00
TAG_ID=$(podman inspect "${IMAGE_TAG}" --format "{{ .Id }}")
2024-02-14 18:56:07 +01:00
echo "::group::Image tag"
echo "image_tag=$IMAGE_TAG"
echo "::endgroup::"
2024-02-11 09:12:08 +01:00
echo "::group::Image digest"
2024-02-14 18:56:07 +01:00
echo "digest=$DIGEST"
2024-02-11 09:12:08 +01:00
echo "::endgroup::"
echo "::group::Cache file name"
echo "$CACHE_FILE_NAME"
echo "::endgroup::"
2024-02-14 18:56:07 +01:00
echo "$DIGEST" > "${CACHE_FILE_NAME}_digest"
2024-02-14 19:39:17 +01:00
echo "$TAG_ID" > "${CACHE_FILE_NAME}_tag_id"
2024-02-14 18:56:07 +01:00
echo "$IMAGE_TAG" > "${CACHE_FILE_NAME}_tag"
2024-02-11 09:12:08 +01:00
- name: Cache image digest
2024-02-14 20:54:44 +01:00
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
2024-02-11 09:12:08 +01:00
with:
2024-02-14 18:56:07 +01:00
path: |
${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_digest
2024-02-14 19:39:17 +01:00
${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_tag_id
2024-02-14 18:56:07 +01:00
${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_tag
2024-02-11 09:12:08 +01:00
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.arch }}-${{ github.run_id }}
2024-02-14 19:06:48 +01:00
- name: Push image to local storage
2024-02-14 18:56:07 +01:00
env:
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
2024-02-14 19:39:17 +01:00
IMAGE_DIR: ${{ env.IMAGE_DIR }}
2024-02-14 18:56:07 +01:00
run: |
2024-02-14 19:06:48 +01:00
DIGEST=$(podman inspect "${IMAGE_TAG}" --format "{{ index .RepoDigests 0}}" | cut -d '@' -f2)
2024-02-14 18:56:07 +01:00
echo "::group::Result"
2024-02-14 19:39:17 +01:00
echo "podman push \"${IMAGE_TAG}\" dir:\"${IMAGE_DIR}/${DIGEST}\""
podman push "${IMAGE_TAG}" dir:"${IMAGE_DIR}/${DIGEST}"
2024-02-14 18:56:07 +01:00
echo "::endgroup::"
2024-02-14 19:39:17 +01:00
- name: Post build image
2024-02-14 19:06:48 +01:00
env:
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
run: |
echo "::group::Result"
echo "podman rmi -i -f \"${IMAGE_TAG}\""
podman rmi -i -f "${IMAGE_TAG}"
echo "::endgroup::"
2023-02-03 07:05:11 +01:00
build_base_database:
timeout-minutes: 180
needs: [ "build_base", "init_build"]
2024-02-11 09:12:08 +01:00
name: Build ${{ matrix.build }} base (${{ matrix.arch }})
2023-02-03 07:05:11 +01:00
strategy:
fail-fast: false
matrix:
2024-02-11 09:12:08 +01:00
build: [build-mysql, build-sqlite3]
2024-02-14 09:25:33 +01:00
arch: ${{ fromJson(needs.init_build.outputs.platforms) }}
2024-02-11 09:12:08 +01:00
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
permissions:
contents: read
id-token: write
2023-02-03 07:05:11 +01:00
steps:
- name: Checkout repository
2024-02-11 17:44:17 +01:00
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2023-02-03 07:05:11 +01:00
with:
fetch-depth: 1
2024-02-11 09:12:08 +01:00
- name: Fix string case
id: lc
env:
ARCH: ${{ matrix.arch }}
run: |
echo "arch=${ARCH,,}" >> $GITHUB_OUTPUT
2023-02-03 07:05:11 +01:00
- name: Generate tags
id: meta
2024-02-11 17:44:17 +01:00
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
2023-02-03 07:05:11 +01:00
with:
2024-02-11 09:12:08 +01:00
images: ${{ env.IMAGES_PREFIX }}${{ matrix.build }}
2023-02-03 07:05:11 +01:00
tags: |
2024-02-11 09:12:08 +01:00
type=sha,suffix=-${{ steps.lc.outputs.arch }}
- name: Download SHA256 tag of ${{ env.BASE_BUILD_NAME }}:${{ matrix.arch }}
2024-02-14 20:54:44 +01:00
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
2024-02-11 09:12:08 +01:00
with:
2024-02-14 18:56:07 +01:00
path: |
${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_digest
2024-02-14 19:39:17 +01:00
${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_tag_id
2024-02-14 18:56:07 +01:00
${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_tag
2024-02-11 09:12:08 +01:00
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.arch }}-${{ github.run_id }}
2024-02-14 18:56:07 +01:00
- name: Retrieve ${{ env.BASE_BUILD_NAME }}:${{ matrix.arch }} info
2024-02-11 09:12:08 +01:00
id: base_build
env:
MATRIX_ARCH: ${{ matrix.arch }}
BASE_IMAGE: ${{ env.BASE_BUILD_NAME }}
IMAGES_PREFIX: ${{ env.IMAGES_PREFIX }}
run: |
2024-02-14 18:56:07 +01:00
BASE_TAG=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_digest")
BUILD_BASE_IMAGE="${IMAGES_PREFIX}${BASE_IMAGE}@${BASE_TAG}"
2024-02-11 09:12:08 +01:00
echo "::group::Base build image information"
echo "base_build_image=${BUILD_BASE_IMAGE}"
echo "::endgroup::"
2023-02-03 07:05:11 +01:00
2024-02-11 09:12:08 +01:00
echo "base_tag=${BASE_TAG}" >> $GITHUB_OUTPUT
echo "base_build_image=${BUILD_BASE_IMAGE}" >> $GITHUB_OUTPUT
2024-02-14 18:56:59 +01:00
- name: Pull ${{ env.BASE_BUILD_NAME }}:${{ matrix.arch }} image
2024-02-14 18:56:07 +01:00
env:
MATRIX_ARCH: ${{ matrix.arch }}
BASE_IMAGE: ${{ env.BASE_BUILD_NAME }}
IMAGES_PREFIX: ${{ env.IMAGES_PREFIX }}
run: |
BASE_DIGEST=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_digest")
2024-02-14 19:39:17 +01:00
BASE_TAG=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_tag_id")
BUILD_BASE_IMAGE=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_tag")
2024-02-14 18:56:07 +01:00
echo "::group::Pull image"
2024-02-14 19:39:17 +01:00
echo "podman pull dir:\"${IMAGE_DIR}/${BASE_DIGEST}\""
podman pull dir:"${IMAGE_DIR}/${BASE_DIGEST}"
2024-02-14 18:56:07 +01:00
echo "podman tag \"${BASE_TAG}\" \"${BUILD_BASE_IMAGE}\""
podman tag "${BASE_TAG}" "${BUILD_BASE_IMAGE}"
echo "::endgroup::"
2024-02-11 09:12:08 +01:00
- name: Build Zabbix Build Base
2023-02-03 07:05:11 +01:00
id: build_image
2024-02-11 17:44:17 +01:00
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
2023-02-03 07:05:11 +01:00
with:
2024-02-11 09:12:08 +01:00
context: ${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel
2023-02-03 07:05:11 +01:00
layers: false
tags: ${{ steps.meta.outputs.tags }}
containerfiles: |
2024-02-11 09:12:08 +01:00
${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel/Dockerfile
build-args: BUILD_BASE_IMAGE=${{ steps.base_build.outputs.base_build_image }}
- name: Image digest
env:
2024-02-14 19:39:17 +01:00
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
2024-02-11 09:12:08 +01:00
CACHE_FILE_NAME: ${{ matrix.build }}_${{ matrix.arch }}
run: |
2024-02-14 19:39:17 +01:00
DIGEST=$(podman inspect ${IMAGE_TAG} --format "{{ index .RepoDigests 0}}" | cut -d '@' -f2)
TAG_ID=$(podman inspect "${IMAGE_TAG}" --format "{{ .Id }}")
echo "::group::Image tag"
echo "image_tag=$IMAGE_TAG"
echo "::endgroup::"
2024-02-11 09:12:08 +01:00
echo "::group::Image digest"
2024-02-14 19:39:17 +01:00
echo "digest=$DIGEST"
2024-02-11 09:12:08 +01:00
echo "::endgroup::"
echo "::group::Cache file name"
echo "$CACHE_FILE_NAME"
echo "::endgroup::"
2024-02-14 19:39:17 +01:00
echo "$DIGEST" > "${CACHE_FILE_NAME}_digest"
echo "$TAG_ID" > "${CACHE_FILE_NAME}_tag_id"
echo "$IMAGE_TAG" > "${CACHE_FILE_NAME}_tag"
2024-02-11 09:12:08 +01:00
- name: Cache image digest
2024-02-14 20:54:44 +01:00
uses: actions/cache/save@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
2024-02-11 09:12:08 +01:00
with:
2024-02-14 19:39:17 +01:00
path: |
${{ matrix.build }}_${{ matrix.arch }}_digest
${{ matrix.build }}_${{ matrix.arch }}_tag_id
${{ matrix.build }}_${{ matrix.arch }}_tag
2024-02-11 09:12:08 +01:00
key: ${{ matrix.build }}-${{ matrix.arch }}-${{ github.run_id }}
2023-02-03 07:05:11 +01:00
2024-02-14 19:39:17 +01:00
- name: Push image to local storage
env:
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
IMAGE_DIR: ${{ env.IMAGE_DIR }}
run: |
DIGEST=$(podman inspect "${IMAGE_TAG}" --format "{{ index .RepoDigests 0}}" | cut -d '@' -f2)
echo "::group::Result"
echo "podman push \"${IMAGE_TAG}\" dir:\"${IMAGE_DIR}/${DIGEST}\""
podman push "${IMAGE_TAG}" dir:"${IMAGE_DIR}/${DIGEST}"
echo "::endgroup::"
- name: Post build image
env:
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
run: |
echo "::group::Result"
echo "podman rmi -i -f \"${IMAGE_TAG}\""
podman rmi -i -f "${IMAGE_TAG}"
echo "::endgroup::"
2023-02-03 07:05:11 +01:00
build_images:
timeout-minutes: 90
needs: [ "build_base_database", "init_build"]
2024-02-11 09:12:08 +01:00
name: Build ${{ matrix.build }} image (${{ matrix.arch }})
2023-02-03 07:05:11 +01:00
strategy:
fail-fast: false
matrix:
build: ${{ fromJson(needs.init_build.outputs.components) }}
2024-02-14 09:25:33 +01:00
arch: ${{ fromJson(needs.init_build.outputs.platforms) }}
2024-02-11 09:12:08 +01:00
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
permissions:
contents: read
id-token: write
2023-02-03 07:05:11 +01:00
steps:
2024-02-11 09:12:08 +01:00
- name: Checkout repository
2024-02-11 17:44:17 +01:00
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
2024-02-11 09:12:08 +01:00
with:
fetch-depth: 1
2024-02-14 09:25:33 +01:00
- name: Variables formating
id: var_format
2024-02-11 09:12:08 +01:00
env:
2024-02-14 09:25:33 +01:00
MATRIX_BUILD: ${{ matrix.build }}
2024-02-11 09:12:08 +01:00
run: |
2024-02-14 09:25:33 +01:00
MATRIX_BUILD=${MATRIX_BUILD^^}
MATRIX_BUILD=${MATRIX_BUILD//-/_}
echo "::group::Result"
echo "matrix_build=${MATRIX_BUILD}"
echo "::endgroup::"
echo "matrix_build=${MATRIX_BUILD}" >> $GITHUB_OUTPUT
2023-02-03 07:05:11 +01:00
- name: Detect Build Base Image
id: build_base_image
env:
2024-02-11 09:12:08 +01:00
MATRIX_BUILD: ${{ matrix.build }}
2024-02-14 09:25:33 +01:00
MATRIX_FILE: ${{ env.MATRIX_FILE }}
2023-02-03 07:05:11 +01:00
run: |
2024-02-14 09:25:33 +01:00
BUILD_BASE=$(jq -r ".components.\"$MATRIX_BUILD\".base" "$MATRIX_FILE")
2024-02-11 09:12:08 +01:00
2024-02-14 09:25:33 +01:00
echo "::group::Base Build Image"
echo "$BUILD_BASE"
2024-02-11 09:12:08 +01:00
echo "::endgroup::"
2023-02-03 07:05:11 +01:00
2024-02-14 09:25:33 +01:00
echo "build_base=${BUILD_BASE}" >> $GITHUB_OUTPUT
2023-02-03 07:05:11 +01:00
- name: Remove smartmontools
if: ${{ matrix.build == 'agent2' }}
2024-02-11 09:12:08 +01:00
env:
DOCKERFILES_DIRECTORY: ${{ env.DOCKERFILES_DIRECTORY }}
2023-02-03 07:05:11 +01:00
run: |
2024-02-11 09:12:08 +01:00
sed -i '/smartmontools/d' "$DOCKERFILES_DIRECTORY/agent2/rhel/Dockerfile"
2023-02-03 07:05:11 +01:00
- name: Generate tags
id: meta
2024-02-11 17:44:17 +01:00
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
2023-02-03 07:05:11 +01:00
with:
2024-02-14 12:18:50 +01:00
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_NAMESPACE }}/${{ secrets[format('{0}_{1}_PROJECT', needs.init_build.outputs.secret_prefix, steps.var_format.outputs.matrix_build)] || matrix.build }}
2023-02-03 07:05:11 +01:00
tags: |
type=semver,pattern={{version}}
type=sha
flavor: |
2024-02-11 09:12:08 +01:00
latest=${{ github.event_name == 'release' }}
suffix=${{ matrix.arch == 'ARM64' && '-arm64' || '' }},onlatest=true
- name: Download SHA256 tag of ${{ steps.build_base_image.outputs.build_base }}:${{ matrix.arch }}
2024-02-14 09:25:33 +01:00
if: ${{ matrix.build != 'snmptraps' }}
2024-02-14 20:54:44 +01:00
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
2024-02-11 09:12:08 +01:00
with:
2024-02-14 19:39:17 +01:00
path: |
${{ steps.build_base_image.outputs.build_base }}_${{ matrix.arch }}_digest
${{ steps.build_base_image.outputs.build_base }}_${{ matrix.arch }}_tag_id
${{ steps.build_base_image.outputs.build_base }}_${{ matrix.arch }}_tag
2024-02-11 09:12:08 +01:00
key: ${{ steps.build_base_image.outputs.build_base }}-${{ matrix.arch }}-${{ github.run_id }}
2024-02-14 19:39:17 +01:00
- name: Retrieve ${{ steps.build_base_image.outputs.build_base }}:${{ matrix.arch }} info
2024-02-11 09:12:08 +01:00
id: base_build
2024-02-14 09:25:33 +01:00
if: ${{ matrix.build != 'snmptraps' }}
2024-02-11 09:12:08 +01:00
env:
MATRIX_ARCH: ${{ matrix.arch }}
BASE_IMAGE: ${{ steps.build_base_image.outputs.build_base }}
IMAGES_PREFIX: ${{ env.IMAGES_PREFIX }}
run: |
2024-02-14 19:39:17 +01:00
BASE_TAG=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_digest")
BUILD_BASE_IMAGE="${IMAGES_PREFIX}${BASE_IMAGE}@${BASE_TAG}"
2024-02-11 09:12:08 +01:00
echo "::group::Base build image information"
echo "base_build_image=${BUILD_BASE_IMAGE}"
echo "::endgroup::"
echo "base_tag=${BASE_TAG}" >> $GITHUB_OUTPUT
echo "base_build_image=${BUILD_BASE_IMAGE}" >> $GITHUB_OUTPUT
2023-02-03 07:05:11 +01:00
2024-02-14 19:39:17 +01:00
- name: Pull ${{ env.BASE_BUILD_NAME }}:${{ matrix.arch }} image
if: ${{ matrix.build != 'snmptraps' }}
env:
MATRIX_ARCH: ${{ matrix.arch }}
BASE_IMAGE: ${{ steps.build_base_image.outputs.build_base }}
IMAGES_PREFIX: ${{ env.IMAGES_PREFIX }}
run: |
BASE_DIGEST=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_digest")
BASE_TAG=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_tag_id")
BUILD_BASE_IMAGE=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_tag")
echo "::group::Pull image"
echo "podman pull dir:\"${IMAGE_DIR}/${BASE_DIGEST}\""
podman pull dir:"${IMAGE_DIR}/${BASE_DIGEST}"
echo "podman tag \"${BASE_TAG}\" \"${BUILD_BASE_IMAGE}\""
podman tag "${BASE_TAG}" "${BUILD_BASE_IMAGE}"
echo "::endgroup::"
2024-02-14 11:02:56 +01:00
- name: Build image
2023-02-03 07:05:11 +01:00
id: build_image
2024-02-11 17:44:17 +01:00
uses: redhat-actions/buildah-build@b4dc19b4ba891854660ab1f88a097d45aa158f76 # v2.12
2023-02-03 07:05:11 +01:00
with:
2024-02-11 09:12:08 +01:00
context: ${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel
2023-02-03 07:05:11 +01:00
layers: false
tags: ${{ steps.meta.outputs.tags }}
labels: |
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'] }}
containerfiles: |
2024-02-11 09:12:08 +01:00
${{ env.DOCKERFILES_DIRECTORY }}/${{ matrix.build }}/rhel/Dockerfile
build-args: BUILD_BASE_IMAGE=${{ steps.base_build.outputs.base_build_image }}
2023-02-03 07:05:11 +01:00
2024-02-14 11:02:56 +01:00
- name: Log in to Quay.io
uses: redhat-actions/podman-login@9184318aae1ee5034fbfbacc0388acf12669171f # v1.6
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
with:
username: ${{ format('redhat-isv-containers+{0}-robot', secrets[format('{0}_{1}_PROJECT', needs.init_build.outputs.secret_prefix, steps.var_format.outputs.matrix_build)]) }}
password: ${{ secrets[format('{0}_{1}_SECRET', needs.init_build.outputs.secret_prefix, steps.var_format.outputs.matrix_build)] }}
registry: ${{ env.REGISTRY }}
auth_file_path: /tmp/.docker_${{ matrix.build }}_${{ matrix.arch }}_${{ needs.init_build.outputs.sha_short }}
- name: Push to RedHat certification procedure (1st)
2023-02-03 07:05:11 +01:00
id: push_to_registry
2024-02-11 09:12:08 +01:00
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
2024-02-11 17:44:17 +01:00
uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2.7.1
2023-02-03 07:05:11 +01:00
with:
tags: ${{ steps.meta.outputs.tags }}
- name: Preflight
2024-02-11 09:12:08 +01:00
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
2023-02-03 07:05:11 +01:00
env:
2024-02-11 09:12:08 +01:00
PFLT_DOCKERCONFIG: /tmp/.docker_${{ matrix.build }}_${{ matrix.arch }}_${{ needs.init_build.outputs.sha_short }}
2024-02-14 09:25:33 +01:00
PFLT_CERTIFICATION_PROJECT_ID: ${{ secrets[format('{0}_{1}_PROJECT', needs.init_build.outputs.secret_prefix, steps.var_format.outputs.matrix_build)] }}
2023-02-03 07:05:11 +01:00
PFLT_PYXIS_API_TOKEN: ${{ secrets.REDHAT_API_TOKEN }}
PFLT_ARTIFACTS: ${{ env.PFLT_ARTIFACTS }}
PFLT_LOGLEVEL: ${{ env.PFLT_LOGLEVEL }}
2024-02-11 09:12:08 +01:00
IMAGE_TAG: ${{ steps.build_image.outputs.image-with-tag }}
PREFLIGHT_IMAGE: ${{ env.PREFLIGHT_IMAGE }}
2023-02-03 07:05:11 +01:00
run: |
2024-02-11 09:12:08 +01:00
mkdir -p $PFLT_ARTIFACTS
echo "::group::Pull preflight image"
podman pull "$PREFLIGHT_IMAGE"
echo "::endgroup::"
echo "::group::Perform certification tests"
podman run \
2023-02-03 07:05:11 +01:00
-it \
--rm \
--security-opt=label=disable \
--env PFLT_LOGLEVEL=$PFLT_LOGLEVEL \
--env PFLT_ARTIFACTS=/artifacts \
--env PFLT_LOGFILE=/artifacts/preflight.log \
--env PFLT_CERTIFICATION_PROJECT_ID=$PFLT_CERTIFICATION_PROJECT_ID \
--env PFLT_PYXIS_API_TOKEN=$PFLT_PYXIS_API_TOKEN \
--env PFLT_DOCKERCONFIG=/temp-authfile.json \
-v $PFLT_ARTIFACTS:/artifacts \
-v $PFLT_DOCKERCONFIG:/temp-authfile.json:ro \
2024-02-11 09:12:08 +01:00
"$PREFLIGHT_IMAGE" check container $IMAGE_TAG --submit
podman rmi -i -f "$PREFLIGHT_IMAGE"
echo "::endgroup::"
2023-02-03 07:05:11 +01:00
2024-02-14 11:02:56 +01:00
- name: Push to RedHat certification procedure (2nd)
2023-02-05 09:17:09 +01:00
id: push_to_registry_all_tags
2024-02-11 09:12:08 +01:00
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
2024-02-11 17:44:17 +01:00
uses: redhat-actions/push-to-registry@9986a6552bc4571882a4a67e016b17361412b4df # v2.7.1
2023-02-05 09:17:09 +01:00
with:
tags: ${{ steps.meta.outputs.tags }}
2024-02-14 20:54:44 +01:00
- name: Post build image
2024-02-11 09:12:08 +01:00
if: ${{ always() }}
env:
TAGS: ${{ steps.meta.outputs.tags }}
2023-02-03 07:05:11 +01:00
run: |
2024-02-14 20:54:44 +01:00
echo "::group::Result"
2024-02-11 09:12:08 +01:00
echo "$TAGS" | while IFS= read -r image_name ; do podman rmi -i -f "$image_name"; done
2024-02-14 20:54:44 +01:00
echo "::endgroup::"
- name: Post Preflight
if: ${{ always() }}
env:
PREFLIGHT_IMAGE: ${{ env.PREFLIGHT_IMAGE }}
PFLT_ARTIFACTS: ${{ env.PFLT_ARTIFACTS }}
run: |
echo "::group::Result"
2024-02-11 09:12:08 +01:00
rm -rf "$PFLT_ARTIFACTS"
podman rmi -i -f "$PREFLIGHT_IMAGE"
echo "::endgroup::"
clean_artifacts:
timeout-minutes: 90
needs: [ "build_images", "init_build"]
name: Build ${{ matrix.build }} image (${{ matrix.arch }})
strategy:
fail-fast: false
matrix:
build: [build-mysql, build-sqlite3]
2024-02-14 20:54:44 +01:00
arch: ${{ fromJson(needs.init_build.outputs.platforms) }}
2024-02-11 09:12:08 +01:00
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
if: ${{ always() && needs.build_base_database.result == 'success' }}
permissions: {}
steps:
- name: Download SHA256 tag of ${{ matrix.build }}:${{ matrix.arch }}
2024-02-14 20:54:44 +01:00
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
2024-02-11 09:12:08 +01:00
with:
2024-02-14 20:00:03 +01:00
path: ${{ matrix.build }}_${{ matrix.arch }}_digest
2024-02-11 09:12:08 +01:00
key: ${{ matrix.build }}-${{ matrix.arch }}-${{ github.run_id }}
2024-02-14 20:00:03 +01:00
- name: Remove ${{ matrix.build }}:${{ matrix.arch }} cache
2024-02-11 09:12:08 +01:00
env:
MATRIX_ARCH: ${{ matrix.arch }}
BASE_IMAGE: ${{ matrix.build }}
2024-02-14 20:00:03 +01:00
IMAGE_DIR: ${{ env.IMAGE_DIR }}
2024-02-11 09:12:08 +01:00
run: |
2024-02-14 20:00:03 +01:00
BASE_TAG=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_digest")
2024-02-11 09:12:08 +01:00
2024-02-14 20:00:03 +01:00
rm -rf "${IMAGE_DIR}/${BASE_TAG}"
2024-02-11 09:12:08 +01:00
- name: Download SHA256 tag of ${{ env.BASE_BUILD_NAME }}:${{ matrix.arch }}
2024-02-14 20:54:44 +01:00
uses: actions/cache/restore@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
2024-02-11 09:12:08 +01:00
with:
2024-02-14 20:00:03 +01:00
path: ${{ env.BASE_BUILD_NAME }}_${{ matrix.arch }}_digest
2024-02-11 09:12:08 +01:00
key: ${{ env.BASE_BUILD_NAME }}-${{ matrix.arch }}-${{ github.run_id }}
2024-02-14 20:00:03 +01:00
- name: Remove ${{ env.BASE_BUILD_NAME }}:${{ matrix.arch }} cache
2024-02-11 09:12:08 +01:00
env:
MATRIX_ARCH: ${{ matrix.arch }}
BASE_IMAGE: ${{ env.BASE_BUILD_NAME }}
2024-02-14 20:00:03 +01:00
IMAGE_DIR: ${{ env.IMAGE_DIR }}
2024-02-11 09:12:08 +01:00
run: |
2024-02-14 20:00:03 +01:00
BASE_TAG=$(cat "${BASE_IMAGE}_${MATRIX_ARCH}_digest")
2024-02-11 09:12:08 +01:00
2024-02-14 20:54:44 +01:00
rm -rf "${IMAGE_DIR}/${BASE_TAG}"