mirror of
https://github.com/NVIDIA/nvidia-container-toolkit
synced 2024-11-21 15:57:49 +00:00
de76598811
Remove centos7-arm64 scan See merge request nvidia/container-toolkit/container-toolkit!445
233 lines
6.7 KiB
YAML
233 lines
6.7 KiB
YAML
# Copyright (c) 2021-2022, NVIDIA CORPORATION. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
include:
|
|
- local: '.common-ci.yml'
|
|
|
|
default:
|
|
tags:
|
|
- cnt
|
|
- container-dev
|
|
- docker/multi-arch
|
|
- docker/privileged
|
|
- os/linux
|
|
- type/docker
|
|
|
|
variables:
|
|
DOCKER_DRIVER: overlay2
|
|
DOCKER_TLS_CERTDIR: "/certs"
|
|
# Release "devel"-tagged images off the main branch
|
|
RELEASE_DEVEL_BRANCH: "main"
|
|
DEVEL_RELEASE_IMAGE_VERSION: "devel"
|
|
# On the multi-arch builder we don't need the qemu setup.
|
|
SKIP_QEMU_SETUP: "1"
|
|
# Define the public staging registry
|
|
STAGING_REGISTRY: registry.gitlab.com/nvidia/container-toolkit/container-toolkit/staging
|
|
STAGING_VERSION: ${CI_COMMIT_SHORT_SHA}
|
|
ARTIFACTORY_REPO_BASE: "https://urm.nvidia.com/artifactory/sw-gpu-cloudnative"
|
|
KITMAKER_RELEASE_FOLDER: "kitmaker"
|
|
|
|
.image-pull:
|
|
stage: image-build
|
|
variables:
|
|
IN_REGISTRY: "${STAGING_REGISTRY}"
|
|
IN_IMAGE_NAME: container-toolkit
|
|
IN_VERSION: "${STAGING_VERSION}"
|
|
OUT_REGISTRY_USER: "${CI_REGISTRY_USER}"
|
|
OUT_REGISTRY_TOKEN: "${CI_REGISTRY_PASSWORD}"
|
|
OUT_REGISTRY: "${CI_REGISTRY}"
|
|
OUT_IMAGE_NAME: "${CI_REGISTRY_IMAGE}/container-toolkit"
|
|
PUSH_MULTIPLE_TAGS: "false"
|
|
# We delay the job start to allow the public pipeline to generate the required images.
|
|
rules:
|
|
- when: delayed
|
|
start_in: 30 minutes
|
|
timeout: 30 minutes
|
|
retry:
|
|
max: 2
|
|
when:
|
|
- job_execution_timeout
|
|
- stuck_or_timeout_failure
|
|
before_script:
|
|
- !reference [.regctl-setup, before_script]
|
|
- apk add --no-cache make bash
|
|
- >
|
|
regctl manifest get ${IN_REGISTRY}/${IN_IMAGE_NAME}:${IN_VERSION}-${DIST} --list > /dev/null && echo "${IN_REGISTRY}/${IN_IMAGE_NAME}:${IN_VERSION}-${DIST}" || ( echo "${IN_REGISTRY}/${IN_IMAGE_NAME}:${IN_VERSION}-${DIST} does not exist" && sleep infinity )
|
|
script:
|
|
- regctl registry login "${OUT_REGISTRY}" -u "${OUT_REGISTRY_USER}" -p "${OUT_REGISTRY_TOKEN}"
|
|
- make -f build/container/Makefile IMAGE=${IN_REGISTRY}/${IN_IMAGE_NAME}:${IN_VERSION}-${DIST} OUT_IMAGE=${OUT_IMAGE_NAME}:${CI_COMMIT_SHORT_SHA}-${DIST} push-${DIST}
|
|
|
|
image-centos7:
|
|
extends:
|
|
- .dist-centos7
|
|
- .image-pull
|
|
|
|
image-ubi8:
|
|
extends:
|
|
- .dist-ubi8
|
|
- .image-pull
|
|
|
|
image-ubuntu20.04:
|
|
extends:
|
|
- .dist-ubuntu20.04
|
|
- .image-pull
|
|
|
|
# The DIST=packaging target creates an image containing all built packages
|
|
image-packaging:
|
|
extends:
|
|
- .dist-packaging
|
|
- .image-pull
|
|
|
|
# We skip the integration tests for the internal CI:
|
|
.integration:
|
|
stage: test
|
|
before_script:
|
|
- echo "Skipped in internal CI"
|
|
script:
|
|
- echo "Skipped in internal CI"
|
|
|
|
# The .scan step forms the base of the image scan operation performed before releasing
|
|
# images.
|
|
.scan:
|
|
stage: scan
|
|
image: "${PULSE_IMAGE}"
|
|
variables:
|
|
IMAGE: "${CI_REGISTRY_IMAGE}/container-toolkit:${CI_COMMIT_SHORT_SHA}-${DIST}"
|
|
IMAGE_ARCHIVE: "container-toolkit-${DIST}-${ARCH}-${CI_JOB_ID}.tar"
|
|
rules:
|
|
- if: $SKIP_SCANS != "yes"
|
|
- when: manual
|
|
before_script:
|
|
- docker login -u "${CI_REGISTRY_USER}" -p "${CI_REGISTRY_PASSWORD}" "${CI_REGISTRY}"
|
|
# TODO: We should specify the architecture here and scan all architectures
|
|
- docker pull --platform="${PLATFORM}" "${IMAGE}"
|
|
- docker save "${IMAGE}" -o "${IMAGE_ARCHIVE}"
|
|
- AuthHeader=$(echo -n $SSA_CLIENT_ID:$SSA_CLIENT_SECRET | base64 -w0)
|
|
- >
|
|
export SSA_TOKEN=$(curl --request POST --header "Authorization: Basic $AuthHeader" --header "Content-Type: application/x-www-form-urlencoded" ${SSA_ISSUER_URL} | jq ".access_token" | tr -d '"')
|
|
- if [ -z "$SSA_TOKEN" ]; then exit 1; else echo "SSA_TOKEN set!"; fi
|
|
script:
|
|
- pulse-cli -n $NSPECT_ID --ssa $SSA_TOKEN scan -i $IMAGE_ARCHIVE -p $CONTAINER_POLICY -o
|
|
artifacts:
|
|
when: always
|
|
expire_in: 1 week
|
|
paths:
|
|
- pulse-cli.log
|
|
- licenses.json
|
|
- sbom.json
|
|
- vulns.json
|
|
- policy_evaluation.json
|
|
|
|
# Define the scan targets
|
|
scan-centos7-amd64:
|
|
extends:
|
|
- .dist-centos7
|
|
- .platform-amd64
|
|
- .scan
|
|
needs:
|
|
- image-centos7
|
|
|
|
scan-ubuntu20.04-amd64:
|
|
extends:
|
|
- .dist-ubuntu20.04
|
|
- .platform-amd64
|
|
- .scan
|
|
needs:
|
|
- image-ubuntu20.04
|
|
|
|
scan-ubuntu20.04-arm64:
|
|
extends:
|
|
- .dist-ubuntu20.04
|
|
- .platform-arm64
|
|
- .scan
|
|
needs:
|
|
- image-ubuntu20.04
|
|
- scan-ubuntu20.04-amd64
|
|
|
|
scan-ubi8-amd64:
|
|
extends:
|
|
- .dist-ubi8
|
|
- .platform-amd64
|
|
- .scan
|
|
needs:
|
|
- image-ubi8
|
|
|
|
scan-ubi8-arm64:
|
|
extends:
|
|
- .dist-ubi8
|
|
- .platform-arm64
|
|
- .scan
|
|
needs:
|
|
- image-ubi8
|
|
- scan-ubi8-amd64
|
|
|
|
# Define external release helpers
|
|
.release:ngc:
|
|
extends:
|
|
- .release:external
|
|
variables:
|
|
OUT_REGISTRY_USER: "${NGC_REGISTRY_USER}"
|
|
OUT_REGISTRY_TOKEN: "${NGC_REGISTRY_TOKEN}"
|
|
OUT_REGISTRY: "${NGC_REGISTRY}"
|
|
OUT_IMAGE_NAME: "${NGC_REGISTRY_IMAGE}"
|
|
|
|
.release:packages:
|
|
stage: release
|
|
needs:
|
|
- image-packaging
|
|
variables:
|
|
VERSION: "${CI_COMMIT_SHORT_SHA}"
|
|
PACKAGE_REGISTRY: "${CI_REGISTRY}"
|
|
PACKAGE_REGISTRY_USER: "${CI_REGISTRY_USER}"
|
|
PACKAGE_REGISTRY_TOKEN: "${CI_REGISTRY_PASSWORD}"
|
|
PACKAGE_IMAGE_NAME: "${CI_REGISTRY_IMAGE}/container-toolkit"
|
|
PACKAGE_IMAGE_TAG: "${CI_COMMIT_SHORT_SHA}-packaging"
|
|
KITMAKER_ARTIFACTORY_REPO: "${ARTIFACTORY_REPO_BASE}-generic-local/${KITMAKER_RELEASE_FOLDER}"
|
|
script:
|
|
- !reference [.regctl-setup, before_script]
|
|
- apk add --no-cache bash git
|
|
- regctl registry login "${PACKAGE_REGISTRY}" -u "${PACKAGE_REGISTRY_USER}" -p "${PACKAGE_REGISTRY_TOKEN}"
|
|
- ./scripts/extract-packages.sh "${PACKAGE_IMAGE_NAME}:${PACKAGE_IMAGE_TAG}"
|
|
# TODO: ./scripts/release-packages-artifactory.sh "${DIST}-${ARCH}" "${PACKAGE_ARTIFACTORY_REPO}"
|
|
- ./scripts/release-kitmaker-artifactory.sh "${KITMAKER_ARTIFACTORY_REPO}"
|
|
|
|
# Define the package release targets
|
|
release:packages:kitmaker:
|
|
extends:
|
|
- .release:packages
|
|
|
|
release:staging-ubuntu20.04:
|
|
extends:
|
|
- .release:staging
|
|
- .dist-ubuntu20.04
|
|
needs:
|
|
- image-ubuntu20.04
|
|
|
|
# Define the external release targets
|
|
# Release to NGC
|
|
release:ngc-centos7:
|
|
extends:
|
|
- .dist-centos7
|
|
- .release:ngc
|
|
|
|
release:ngc-ubuntu20.04:
|
|
extends:
|
|
- .dist-ubuntu20.04
|
|
- .release:ngc
|
|
|
|
release:ngc-ubi8:
|
|
extends:
|
|
- .dist-ubi8
|
|
- .release:ngc
|