mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-22 15:53:35 +01:00
Prepare RHEL workflow for secrets
This commit is contained in:
parent
f697db3689
commit
e0e7341bf7
21
.github/workflows/images_build.yml
vendored
21
.github/workflows/images_build.yml
vendored
@ -87,7 +87,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
os_list=$(jq -r '.["os-linux"] | keys | [ .[] | tostring ] | @json' "$MATRIX_FILE")
|
os_list=$(jq -r '.["os-linux"] | keys | map(select(. != "rhel")) | [ .[] | tostring ] | @json' "$MATRIX_FILE")
|
||||||
|
|
||||||
echo "::group::Operating System List"
|
echo "::group::Operating System List"
|
||||||
echo "$os_list"
|
echo "$os_list"
|
||||||
@ -95,25 +95,12 @@ jobs:
|
|||||||
|
|
||||||
echo "list=$os_list" >> $GITHUB_OUTPUT
|
echo "list=$os_list" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Prepare Platform list
|
|
||||||
id: platform_list
|
|
||||||
env:
|
|
||||||
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
|
||||||
run: |
|
|
||||||
platform_list=$(jq -r '.["os-linux"] | tostring | @json' "$MATRIX_FILE")
|
|
||||||
|
|
||||||
echo "::group::Platform List"
|
|
||||||
echo "$platform_list"
|
|
||||||
echo "::endgroup::"
|
|
||||||
|
|
||||||
echo "list=$platform_list" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Prepare Database engine list
|
- name: Prepare Database engine list
|
||||||
id: database
|
id: database
|
||||||
env:
|
env:
|
||||||
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
database_list=$(jq -r '[.components | values[] ] | sort | unique | del(.. | select ( . == "" ) ) | [ .[] | tostring ] | @json' "$MATRIX_FILE")
|
database_list=$(jq -r '[.components | values[].base ] | sort | unique | del(.. | select ( . == "" ) ) | @json' "$MATRIX_FILE")
|
||||||
|
|
||||||
echo "::group::Database List"
|
echo "::group::Database List"
|
||||||
echo "$database_list"
|
echo "$database_list"
|
||||||
@ -126,7 +113,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
component_list=$(jq -r '.components | keys | [ .[] | tostring ] | @json' "$MATRIX_FILE")
|
component_list=$(jq -r '.components | keys | @json' "$MATRIX_FILE")
|
||||||
|
|
||||||
echo "::group::Zabbix Component List"
|
echo "::group::Zabbix Component List"
|
||||||
echo "$component_list"
|
echo "$component_list"
|
||||||
@ -789,7 +776,7 @@ jobs:
|
|||||||
MATRIX_BUILD: ${{ matrix.build }}
|
MATRIX_BUILD: ${{ matrix.build }}
|
||||||
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
BUILD_BASE=$(jq -r ".components.\"$MATRIX_BUILD\"" "$MATRIX_FILE")
|
BUILD_BASE=$(jq -r ".components.\"$MATRIX_BUILD\".base" "$MATRIX_FILE")
|
||||||
|
|
||||||
echo "::group::Base Build Image"
|
echo "::group::Base Build Image"
|
||||||
echo "$BUILD_BASE"
|
echo "$BUILD_BASE"
|
||||||
|
112
.github/workflows/images_build_rhel.yml
vendored
112
.github/workflows/images_build_rhel.yml
vendored
@ -21,6 +21,7 @@ env:
|
|||||||
IMAGES_PREFIX: "zabbix-"
|
IMAGES_PREFIX: "zabbix-"
|
||||||
BASE_BUILD_NAME: "build-base"
|
BASE_BUILD_NAME: "build-base"
|
||||||
|
|
||||||
|
MATRIX_FILE: "build.json"
|
||||||
DOCKERFILES_DIRECTORY: "Dockerfiles"
|
DOCKERFILES_DIRECTORY: "Dockerfiles"
|
||||||
|
|
||||||
OIDC_ISSUER: "https://token.actions.githubusercontent.com"
|
OIDC_ISSUER: "https://token.actions.githubusercontent.com"
|
||||||
@ -39,6 +40,7 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
outputs:
|
outputs:
|
||||||
|
platforms: ${{ steps.platform_list.outputs.list }}
|
||||||
components: ${{ steps.components.outputs.list }}
|
components: ${{ steps.components.outputs.list }}
|
||||||
is_default_branch: ${{ steps.branch_info.outputs.is_default_branch }}
|
is_default_branch: ${{ steps.branch_info.outputs.is_default_branch }}
|
||||||
current_branch: ${{ steps.branch_info.outputs.current_branch }}
|
current_branch: ${{ steps.branch_info.outputs.current_branch }}
|
||||||
@ -57,6 +59,42 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
|
|
||||||
|
- 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 | tostring | @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
|
||||||
|
|
||||||
- name: Get branch info
|
- name: Get branch info
|
||||||
id: branch_info
|
id: branch_info
|
||||||
shell: bash
|
shell: bash
|
||||||
@ -88,23 +126,6 @@ jobs:
|
|||||||
echo "sha_short=$sha_short" >> $GITHUB_OUTPUT
|
echo "sha_short=$sha_short" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
|
|
||||||
- name: Prepare Zabbix component list
|
|
||||||
id: components
|
|
||||||
env:
|
|
||||||
REDHAT_CERTIFY_CREDENTIALS: ${{ secrets.REDHAT_CERTIFY_CREDENTIALS }}
|
|
||||||
CURRENT_BRANCH: ${{ steps.branch_info.outputs.current_branch }}
|
|
||||||
run: |
|
|
||||||
if [[ -z "$REDHAT_CERTIFY_CREDENTIALS" ]]; then
|
|
||||||
echo "::error::Missing RedHat Certification details"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
component_list=$(jq --raw-output --argjson data "$REDHAT_CERTIFY_CREDENTIALS" -n "\$data.\"$CURRENT_BRANCH\".components | keys | @json")
|
|
||||||
|
|
||||||
echo "::group::Zabbix Component List"
|
|
||||||
echo "$component_list"
|
|
||||||
echo "::endgroup::"
|
|
||||||
|
|
||||||
echo "list=$component_list" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
build_base:
|
build_base:
|
||||||
timeout-minutes: 30
|
timeout-minutes: 30
|
||||||
@ -114,7 +135,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
build: [build-base]
|
build: [build-base]
|
||||||
arch: [X64, ARM64]
|
arch: ${{ fromJson(needs.init_build.outputs.platforms) }}
|
||||||
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
|
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@ -188,7 +209,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
build: [build-mysql, build-sqlite3]
|
build: [build-mysql, build-sqlite3]
|
||||||
arch: [X64, ARM64]
|
arch: ${{ fromJson(needs.init_build.outputs.platforms) }}
|
||||||
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
|
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@ -278,7 +299,7 @@ jobs:
|
|||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
build: ${{ fromJson(needs.init_build.outputs.components) }}
|
build: ${{ fromJson(needs.init_build.outputs.components) }}
|
||||||
arch: [X64, ARM64]
|
arch: ${{ fromJson(needs.init_build.outputs.platforms) }}
|
||||||
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
|
runs-on: [self-hosted, linux, "${{ matrix.arch }}"]
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@ -299,56 +320,23 @@ jobs:
|
|||||||
- name: Detect Build Base Image
|
- name: Detect Build Base Image
|
||||||
id: build_base_image
|
id: build_base_image
|
||||||
env:
|
env:
|
||||||
REDHAT_CERTIFY_CREDENTIALS: ${{ secrets.REDHAT_CERTIFY_CREDENTIALS }}
|
|
||||||
MATRIX_BUILD: ${{ matrix.build }}
|
MATRIX_BUILD: ${{ matrix.build }}
|
||||||
CURRENT_BRANCH: ${{ needs.init_build.outputs.current_branch }}
|
MATRIX_FILE: ${{ env.MATRIX_FILE }}
|
||||||
run: |
|
run: |
|
||||||
BUILD_BASE=$(jq --raw-output --argjson data "$REDHAT_CERTIFY_CREDENTIALS" -n "\$data.\"$CURRENT_BRANCH\".components.\"$MATRIX_BUILD\".build_base")
|
BUILD_BASE=$(jq -r ".components.\"$MATRIX_BUILD\".base" "$MATRIX_FILE")
|
||||||
|
|
||||||
echo "::group::Build base image"
|
echo "::group::Base Build Image"
|
||||||
echo "build_base=$BUILD_BASE"
|
echo "$BUILD_BASE"
|
||||||
echo "::endgroup::"
|
echo "::endgroup::"
|
||||||
|
|
||||||
echo "build_base=$BUILD_BASE" >> $GITHUB_OUTPUT
|
echo "build_base=${BUILD_BASE}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Generate image name
|
|
||||||
id: image_name
|
|
||||||
env:
|
|
||||||
REDHAT_CERTIFY_CREDENTIALS: ${{ secrets.REDHAT_CERTIFY_CREDENTIALS }}
|
|
||||||
MATRIX_BUILD: ${{ matrix.build }}
|
|
||||||
CURRENT_BRANCH: ${{ needs.init_build.outputs.current_branch }}
|
|
||||||
run: |
|
|
||||||
IMAGE_NAME=$(jq --raw-output --argjson data "$REDHAT_CERTIFY_CREDENTIALS" -n "\$data.\"$CURRENT_BRANCH\".components.\"$MATRIX_BUILD\".login")
|
|
||||||
|
|
||||||
echo "::add-mask::$IMAGE_NAME"
|
|
||||||
echo "image_name=$IMAGE_NAME" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Generate credentials
|
|
||||||
id: login_credentials
|
|
||||||
env:
|
|
||||||
REDHAT_CERTIFY_CREDENTIALS: ${{ secrets.REDHAT_CERTIFY_CREDENTIALS }}
|
|
||||||
MATRIX_BUILD: ${{ matrix.build }}
|
|
||||||
CURRENT_BRANCH: ${{ needs.init_build.outputs.current_branch }}
|
|
||||||
run: |
|
|
||||||
IMAGE_NAME=$(jq --raw-output --argjson data "$REDHAT_CERTIFY_CREDENTIALS" -n "\$data.\"$CURRENT_BRANCH\".components.\"$MATRIX_BUILD\".login")
|
|
||||||
REGISTRY_PASSWORD=$(jq --raw-output --argjson data "$REDHAT_CERTIFY_CREDENTIALS" -n "\$data.\"$CURRENT_BRANCH\".components.\"$MATRIX_BUILD\".secret")
|
|
||||||
|
|
||||||
echo "::add-mask::$IMAGE_NAME"
|
|
||||||
echo "::add-mask::redhat-isv-containers+$IMAGE_NAME-robot"
|
|
||||||
echo "::add-mask::$REGISTRY_PASSWORD"
|
|
||||||
|
|
||||||
echo "username=$IMAGE_NAME" >> $GITHUB_OUTPUT
|
|
||||||
echo "password=$REGISTRY_PASSWORD" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Log in to Quay.io
|
- name: Log in to Quay.io
|
||||||
uses: redhat-actions/podman-login@9184318aae1ee5034fbfbacc0388acf12669171f # v1.6
|
uses: redhat-actions/podman-login@9184318aae1ee5034fbfbacc0388acf12669171f # v1.6
|
||||||
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
env:
|
|
||||||
LOGIN: ${{ steps.login_credentials.outputs.username }}
|
|
||||||
PASSWORD: ${{ steps.login_credentials.outputs.password }}
|
|
||||||
with:
|
with:
|
||||||
username: redhat-isv-containers+${{ env.LOGIN }}-robot
|
username: ${{ format('redhat-isv-containers+{0}-robot', secrets[format('RHEL_{0}_{1}_PROJECT', ${{ needs.init_build.outputs.current_branch }}, ${{ matrix.build }})]) }}
|
||||||
password: ${{ env.PASSWORD }}
|
password: ${{ secrets[format('RHEL_{0}_{1}_SECRET', ${{ needs.init_build.outputs.current_branch }}, ${{ matrix.build }})] }}
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
auth_file_path: /tmp/.docker_${{ matrix.build }}_${{ matrix.arch }}_${{ needs.init_build.outputs.sha_short }}
|
auth_file_path: /tmp/.docker_${{ matrix.build }}_${{ matrix.arch }}_${{ needs.init_build.outputs.sha_short }}
|
||||||
|
|
||||||
@ -363,7 +351,7 @@ jobs:
|
|||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1
|
||||||
with:
|
with:
|
||||||
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_NAMESPACE }}/${{ steps.image_name.outputs.image_name }}
|
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_NAMESPACE }}/${{ format('redhat-isv-containers+{0}-robot', secrets[format('RHEL_{0}_{1}_PROJECT', ${{ needs.init_build.outputs.current_branch }}, ${{ matrix.build }})]) }}
|
||||||
tags: |
|
tags: |
|
||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{version}}
|
||||||
type=sha
|
type=sha
|
||||||
@ -420,7 +408,7 @@ jobs:
|
|||||||
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
if: ${{ env.AUTO_PUSH_IMAGES == 'true' }}
|
||||||
env:
|
env:
|
||||||
PFLT_DOCKERCONFIG: /tmp/.docker_${{ matrix.build }}_${{ matrix.arch }}_${{ needs.init_build.outputs.sha_short }}
|
PFLT_DOCKERCONFIG: /tmp/.docker_${{ matrix.build }}_${{ matrix.arch }}_${{ needs.init_build.outputs.sha_short }}
|
||||||
PFLT_CERTIFICATION_PROJECT_ID: ${{ steps.login_credentials.outputs.username }}
|
PFLT_CERTIFICATION_PROJECT_ID: ${{ format('redhat-isv-containers+{0}-robot', secrets[format('RHEL_{0}_{1}_PROJECT', ${{ needs.init_build.outputs.current_branch }}, ${{ matrix.build }})]) }}
|
||||||
PFLT_PYXIS_API_TOKEN: ${{ secrets.REDHAT_API_TOKEN }}
|
PFLT_PYXIS_API_TOKEN: ${{ secrets.REDHAT_API_TOKEN }}
|
||||||
PFLT_ARTIFACTS: ${{ env.PFLT_ARTIFACTS }}
|
PFLT_ARTIFACTS: ${{ env.PFLT_ARTIFACTS }}
|
||||||
PFLT_LOGLEVEL: ${{ env.PFLT_LOGLEVEL }}
|
PFLT_LOGLEVEL: ${{ env.PFLT_LOGLEVEL }}
|
||||||
|
30
build.json
30
build.json
@ -22,6 +22,10 @@
|
|||||||
"linux/amd64",
|
"linux/amd64",
|
||||||
"linux/arm64",
|
"linux/arm64",
|
||||||
"linux/ppc64le"
|
"linux/ppc64le"
|
||||||
|
],
|
||||||
|
"rhel": [
|
||||||
|
"X64",
|
||||||
|
"ARM64"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"os-windows": {
|
"os-windows": {
|
||||||
@ -29,18 +33,18 @@
|
|||||||
"windows-2019": "ltsc2019"
|
"windows-2019": "ltsc2019"
|
||||||
},
|
},
|
||||||
"components": {
|
"components": {
|
||||||
"agent": "build-mysql",
|
"agent": { "base" : "build-mysql", "rhel" : true },
|
||||||
"agent2": "build-mysql",
|
"agent2": { "base" : "build-mysql", "rhel" : true },
|
||||||
"java-gateway": "build-mysql",
|
"java-gateway": { "base" : "build-mysql", "rhel" : true },
|
||||||
"proxy-mysql": "build-mysql",
|
"proxy-mysql": { "base" : "build-mysql", "rhel" : true },
|
||||||
"proxy-sqlite3": "build-sqlite3",
|
"proxy-sqlite3": { "base" : "build-sqlite3", "rhel" : true },
|
||||||
"server-mysql": "build-mysql",
|
"server-mysql": { "base" : "build-mysql", "rhel" : true },
|
||||||
"server-pgsql": "build-pgsql",
|
"server-pgsql": { "base" : "build-pgsql", "rhel" : false },
|
||||||
"snmptraps": "",
|
"snmptraps": { "base" : "", "rhel" : true },
|
||||||
"web-apache-mysql": "build-mysql",
|
"web-apache-mysql": { "base" : "build-mysql", "rhel" : true },
|
||||||
"web-apache-pgsql": "build-pgsql",
|
"web-apache-pgsql": { "base" : "build-pgsql", "rhel" : false },
|
||||||
"web-nginx-mysql": "build-mysql",
|
"web-nginx-mysql": { "base" : "build-mysql", "rhel" : true },
|
||||||
"web-nginx-pgsql": "build-mysql",
|
"web-nginx-pgsql": { "base" : "build-mysql", "rhel" : false },
|
||||||
"web-service": "build-mysql"
|
"web-service": { "base" : "build-mysql", "rhel" : true }
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user