ci: cri-containerd: Add LTS / Active versions for containerd

As we'll be testing against the LTS and the Active versions of
containers, let's add those entries to the versions.yaml file and make
sure we export what we want to use for the tests as an env var.

The approach taken should not break the current way of getting the
containerd version.

LTS and Active versions of containerd can be found at:
https://containerd.io/releases/#support-horizon

Fixes: #6543

Signed-off-by: Fabiano Fidêncio <fabiano.fidencio@intel.com>
This commit is contained in:
Fabiano Fidêncio 2023-07-13 11:31:50 +02:00
parent 2a957d41c8
commit 7319cff77a
2 changed files with 4 additions and 0 deletions

View File

@ -14,9 +14,11 @@ jobs:
strategy:
fail-fast: true
matrix:
containerd_version: ['lts', 'active']
vmm: ['clh', 'qemu']
runs-on: garm-ubuntu-2204
env:
CONTAINERD_VERSION: ${{ matrix.containerd_version }}
GOPATH: ${{ github.workspace }}
KATA_HYPERVSIOR: ${{ matrix.vmm }}
steps:

View File

@ -228,6 +228,8 @@ externals:
# instead of abstract socket, thus kata wouldn's support the containerd's
# version older than them.
version: "v1.6.8"
lts: "v1.6"
active: "v1.7"
critools:
description: "CLI tool for Container Runtime Interface (CRI)"