-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial CI/CD See merge request nvidia/cloud-native/vgpu-device-manager!1
- Loading branch information
Showing
4 changed files
with
329 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# Copyright (c) 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. | ||
|
||
default: | ||
image: docker:latest | ||
services: | ||
- name: docker:dind | ||
command: ["--experimental"] | ||
|
||
variables: | ||
BUILD_MULTI_ARCH_IMAGES: "true" | ||
|
||
stages: | ||
- image-build | ||
- test | ||
- scan | ||
- release | ||
|
||
# Define the distribution targets | ||
.dist-ubi8: | ||
variables: | ||
DIST: ubi8 | ||
|
||
# Define the platform targets | ||
.platform-amd64: | ||
variables: | ||
PLATFORM: linux/amd64 | ||
|
||
.platform-arm64: | ||
variables: | ||
PLATFORM: linux/arm64 | ||
|
||
# Make buildx available as a docker CLI plugin | ||
.buildx-setup: | ||
before_script: | ||
- export BUILDX_VERSION=v0.6.3 | ||
- apk add --no-cache curl | ||
- mkdir -p ~/.docker/cli-plugins | ||
- curl -sSLo ~/.docker/cli-plugins/docker-buildx "https://github.com/docker/buildx/releases/download/${BUILDX_VERSION}/buildx-${BUILDX_VERSION}.linux-amd64" | ||
- chmod a+x ~/.docker/cli-plugins/docker-buildx | ||
|
||
- docker buildx create --use --platform=linux/amd64,linux/arm64 | ||
|
||
- '[[ -n "${SKIP_QEMU_SETUP}" ]] || docker run --rm --privileged multiarch/qemu-user-static --reset -p yes' | ||
|
||
# Define test helpers | ||
.integration: | ||
stage: test | ||
variables: | ||
VERSION: "${CI_COMMIT_SHORT_SHA}" | ||
IMAGE_NAME: "${CI_REGISTRY_IMAGE}" | ||
except: | ||
variables: | ||
- $CI_COMMIT_MESSAGE =~ /\[skip[ _-]tests?\]/i | ||
- $SKIP_TESTS | ||
before_script: | ||
- apk add --no-cache make bash jq | ||
- docker login -u "${CI_REGISTRY_USER}" -p "${CI_REGISTRY_PASSWORD}" "${CI_REGISTRY}" | ||
- docker pull "${IMAGE_NAME}:${VERSION}-${DIST}" | ||
script: | ||
- make -f deployments/container/Makefile test-${DIST} | ||
|
||
# Download the regctl binary for use in the release steps | ||
.regctl-setup: | ||
before_script: | ||
- export REGCTL_VERSION=v0.3.10 | ||
- apk add --no-cache curl | ||
- mkdir -p bin | ||
- curl -sSLo bin/regctl https://github.com/regclient/regclient/releases/download/${REGCTL_VERSION}/regctl-linux-amd64 | ||
- chmod a+x bin/regctl | ||
- export PATH=$(pwd)/bin:${PATH} | ||
|
||
# .release forms the base of the deployment jobs which push images to the CI registry. | ||
# This is extended with the version to be deployed (e.g. the SHA or TAG) and the | ||
# target os. | ||
.release: | ||
stage: release | ||
variables: | ||
# Define the source image for the release | ||
IMAGE_NAME: "${CI_REGISTRY_IMAGE}" | ||
VERSION: "${CI_COMMIT_SHORT_SHA}" | ||
# OUT_IMAGE_VERSION is overridden for external releases | ||
OUT_IMAGE_VERSION: "${CI_COMMIT_SHORT_SHA}" | ||
before_script: | ||
- !reference [.regctl-setup, before_script] | ||
# We ensure that the OUT_IMAGE_VERSION is set | ||
- 'echo Version: ${OUT_IMAGE_VERSION} ; [[ -n "${OUT_IMAGE_VERSION}" ]] || exit 1' | ||
# In the case where we are deploying a different version to the CI_COMMIT_SHA, we | ||
# need to tag the image. | ||
# Note: a leading 'v' is stripped from the version if present | ||
- apk add --no-cache make bash | ||
script: | ||
- 'echo "Logging in to CI registry ${CI_REGISTRY}"' | ||
- regctl registry login "${CI_REGISTRY}" -u "${CI_REGISTRY_USER}" -p "${CI_REGISTRY_PASSWORD}" | ||
- '[ ${CI_REGISTRY} = ${OUT_REGISTRY} ] || echo "Logging in to output registry ${OUT_REGISTRY}"' | ||
- '[ ${CI_REGISTRY} = ${OUT_REGISTRY} ] || regctl registry login "${OUT_REGISTRY}" -u "${OUT_REGISTRY_USER}" -p "${OUT_REGISTRY_TOKEN}"' | ||
|
||
# Since OUT_IMAGE_NAME and OUT_IMAGE_VERSION are set, this will push the CI image to the | ||
# Target | ||
- make -f deployments/container/Makefile push-${DIST} | ||
|
||
# Define a staging release step that pushes an image to an internal "staging" repository | ||
# This is triggered for all pipelines (i.e. not only tags) to test the pipeline steps | ||
# outside of the release process. | ||
.release:staging: | ||
extends: | ||
- .release | ||
variables: | ||
OUT_REGISTRY_USER: "${CI_REGISTRY_USER}" | ||
OUT_REGISTRY_TOKEN: "${CI_REGISTRY_PASSWORD}" | ||
OUT_REGISTRY: "${CI_REGISTRY}" | ||
OUT_IMAGE_NAME: "${CI_REGISTRY_IMAGE}/staging/vgpu-device-manager" | ||
|
||
# Define an external release step that pushes an image to an external repository. | ||
# This includes a devlopment image off master. | ||
.release:external: | ||
extends: | ||
- .release | ||
rules: | ||
- if: $CI_COMMIT_TAG | ||
variables: | ||
OUT_IMAGE_VERSION: "${CI_COMMIT_TAG}" | ||
- if: $CI_COMMIT_BRANCH == $RELEASE_DEVEL_BRANCH | ||
variables: | ||
OUT_IMAGE_VERSION: "${DEVEL_RELEASE_IMAGE_VERSION}" | ||
|
||
# Define the release jobs | ||
release:staging-ubi8: | ||
extends: | ||
- .release:staging | ||
- .dist-ubi8 | ||
needs: | ||
- image-ubi8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Copyright (c) 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' | ||
|
||
# Define the image build targets | ||
.image-build: | ||
stage: image-build | ||
variables: | ||
IMAGE_NAME: "${CI_REGISTRY_IMAGE}" | ||
VERSION: "${CI_COMMIT_SHORT_SHA}" | ||
PUSH_ON_BUILD: "true" | ||
before_script: | ||
- !reference [.buildx-setup, before_script] | ||
- apk add --no-cache bash make | ||
- 'echo "Logging in to CI registry ${CI_REGISTRY}"' | ||
- docker login -u "${CI_REGISTRY_USER}" -p "${CI_REGISTRY_PASSWORD}" "${CI_REGISTRY}" | ||
script: | ||
- make -f deployments/container/Makefile build-${DIST} | ||
|
||
image-ubi8: | ||
extends: | ||
- .image-build | ||
- .dist-ubi8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,144 @@ | ||
# Copyright (c) 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 (disabled for now) | ||
#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/cloud-native/vgpu-device-manager/staging | ||
STAGING_VERSION: ${CI_COMMIT_SHORT_SHA} | ||
|
||
.image-pull: | ||
stage: image-build | ||
variables: | ||
IN_REGISTRY: "${STAGING_REGISTRY}" | ||
IN_IMAGE_NAME: vgpu-device-manager | ||
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}" | ||
PUSH_MULTIPLE_TAGS: "false" | ||
# We delay the job start to allow the public pipeline to generate the required images. | ||
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 deployments/container/Makefile IMAGE=${IN_REGISTRY}/${IN_IMAGE_NAME}:${IN_VERSION}-${DIST} OUT_IMAGE=${OUT_IMAGE_NAME}:${CI_COMMIT_SHORT_SHA}-${DIST} push-${DIST} | ||
|
||
image-ubi8: | ||
extends: | ||
- .image-pull | ||
- .dist-ubi8 | ||
|
||
# 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}:${CI_COMMIT_SHORT_SHA}-${DIST}" | ||
IMAGE_ARCHIVE: "vgpu-device-manager.tar" | ||
except: | ||
variables: | ||
- $CI_COMMIT_MESSAGE =~ /\[skip[ _-]scans?\]/i | ||
- $SKIP_SCANS && $SKIP_SCANS == "yes" | ||
before_script: | ||
- docker login -u "${CI_REGISTRY_USER}" -p "${CI_REGISTRY_PASSWORD}" "${CI_REGISTRY}" | ||
- 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 | ||
|
||
# The .scan-ubi8 steps forms the base for all ubi8 image scans across supported architectures | ||
.scan-ubi8: | ||
extends: | ||
- .scan | ||
- .dist-ubi8 | ||
needs: | ||
- image-ubi8 | ||
|
||
# Define the scan targets | ||
scan-ubi8-amd64: | ||
extends: | ||
- .scan-ubi8 | ||
- .platform-amd64 | ||
|
||
# Define the 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}" | ||
# Disable external releases for now | ||
DOCKER: echo docker | ||
REGCTL: echo regctl | ||
|
||
# Define the external release targets | ||
# Release to NGC | ||
release:ngc-ubi8: | ||
extends: | ||
- .release:ngc | ||
- .dist-ubi8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters