mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-13 20:27:41 +00:00
I've missed doing this doing the KBS deployment set up. Signed-off-by: Fabiano Fidêncio <ffidencio@nvidia.com>
113 lines
3.5 KiB
YAML
113 lines
3.5 KiB
YAML
name: CI | Run NVIDIA GPU kubernetes tests on arm64
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
registry:
|
|
required: true
|
|
type: string
|
|
repo:
|
|
required: true
|
|
type: string
|
|
tag:
|
|
required: true
|
|
type: string
|
|
pr-number:
|
|
required: true
|
|
type: string
|
|
commit-hash:
|
|
required: false
|
|
type: string
|
|
target-branch:
|
|
required: false
|
|
type: string
|
|
default: ""
|
|
secrets:
|
|
NGC_API_KEY:
|
|
required: true
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
run-nvidia-gpu-tests-on-amd64:
|
|
name: run-${{ matrix.environment.name }}-tests-on-amd64
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
environment: [
|
|
{ name: nvidia-gpu, vmm: qemu-nvidia-gpu, runner: amd64-nvidia-a100 },
|
|
{ name: nvidia-gpu-snp, vmm: qemu-nvidia-gpu-snp, runner: amd64-nvidia-h100-snp },
|
|
]
|
|
runs-on: ${{ matrix.environment.runner }}
|
|
env:
|
|
DOCKER_REGISTRY: ${{ inputs.registry }}
|
|
DOCKER_REPO: ${{ inputs.repo }}
|
|
DOCKER_TAG: ${{ inputs.tag }}
|
|
GH_PR_NUMBER: ${{ inputs.pr-number }}
|
|
KATA_HYPERVISOR: ${{ matrix.environment.vmm }}
|
|
KUBERNETES: kubeadm
|
|
K8S_TEST_HOST_TYPE: baremetal
|
|
steps:
|
|
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
|
with:
|
|
ref: ${{ inputs.commit-hash }}
|
|
fetch-depth: 0
|
|
persist-credentials: false
|
|
|
|
- name: Rebase atop of the latest target branch
|
|
run: |
|
|
./tests/git-helper.sh "rebase-atop-of-the-latest-target-branch"
|
|
env:
|
|
TARGET_BRANCH: ${{ inputs.target-branch }}
|
|
|
|
- name: Uninstall previous `kbs-client`
|
|
if: matrix.environment.name != 'nvidia-gpu'
|
|
timeout-minutes: 10
|
|
run: bash tests/integration/kubernetes/gha-run.sh uninstall-kbs-client
|
|
|
|
- name: Deploy CoCo KBS
|
|
if: matrix.environment.name != 'nvidia-gpu'
|
|
timeout-minutes: 10
|
|
run: bash tests/integration/kubernetes/gha-run.sh deploy-coco-kbs
|
|
env:
|
|
NVIDIA_VERIFIER_MODE: remote
|
|
KBS_INGRESS: nodeport
|
|
|
|
- name: Install `kbs-client`
|
|
if: matrix.environment.name != 'nvidia-gpu'
|
|
timeout-minutes: 10
|
|
run: bash tests/integration/kubernetes/gha-run.sh install-kbs-client
|
|
|
|
- name: Deploy Kata
|
|
timeout-minutes: 20
|
|
run: bash tests/integration/kubernetes/gha-run.sh deploy-kata
|
|
|
|
- name: Install `bats`
|
|
run: bash tests/integration/kubernetes/gha-run.sh install-bats
|
|
|
|
- name: Run tests ${{ matrix.environment.vmm }}
|
|
timeout-minutes: 30
|
|
run: bash tests/integration/kubernetes/gha-run.sh run-nv-tests
|
|
env:
|
|
NGC_API_KEY: ${{ secrets.NGC_API_KEY }}
|
|
- name: Collect artifacts ${{ matrix.environment.vmm }}
|
|
if: always()
|
|
run: bash tests/integration/kubernetes/gha-run.sh collect-artifacts
|
|
continue-on-error: true
|
|
|
|
- name: Archive artifacts ${{ matrix.environment.vmm }}
|
|
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
|
with:
|
|
name: k8s-tests-${{ matrix.environment.vmm }}-kubeadm-${{ inputs.tag }}
|
|
path: /tmp/artifacts
|
|
retention-days: 1
|
|
|
|
- name: Delete kata-deploy
|
|
if: always()
|
|
timeout-minutes: 15
|
|
run: bash tests/integration/kubernetes/gha-run.sh cleanup
|
|
|
|
- name: Delete CoCo KBS
|
|
if: always() && matrix.environment.name != 'nvidia-gpu'
|
|
run: |
|
|
bash tests/integration/kubernetes/gha-run.sh delete-coco-kbs
|