From: John Mulligan Date: Thu, 21 Aug 2025 16:40:00 +0000 (-0400) Subject: cephadm: add centos 10 container images for cephadm build tests X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=32e98c484ac1ee518d8a479f17ccf4c5b7a7264b;p=ceph.git cephadm: add centos 10 container images for cephadm build tests Signed-off-by: John Mulligan --- diff --git a/src/cephadm/tests/build/test_cephadm_build.py b/src/cephadm/tests/build/test_cephadm_build.py index 90ce9e387fc..185ffbf6bb1 100644 --- a/src/cephadm/tests/build/test_cephadm_build.py +++ b/src/cephadm/tests/build/test_cephadm_build.py @@ -17,11 +17,21 @@ CONTAINERS = { 'base_image': 'quay.io/centos/centos:stream9', 'script': 'dnf install -y python3', }, + 'centos-10': { + 'name': 'cephadm-build-test:centos10-py3', + 'base_image': 'quay.io/centos/centos:stream10', + 'script': 'dnf install -y python3', + }, 'centos-9-plusdeps': { 'name': 'cephadm-build-test:centos9-py3-deps', 'base_image': 'quay.io/centos/centos:stream9', 'script': 'dnf install -y python3 python3-jinja2 python3-pyyaml', }, + 'centos-10-plusdeps': { + 'name': 'cephadm-build-test:centos10-py3-deps', + 'base_image': 'quay.io/centos/centos:stream10', + 'script': 'dnf install -y python3 python3-jinja2 python3-pyyaml', + }, 'ubuntu-20.04': { 'name': 'cephadm-build-test:ubuntu-20-04-py3', 'base_image': 'docker.io/library/ubuntu:20.04', @@ -86,6 +96,7 @@ def source_dir(): 'env', [ 'centos-9', + 'centos-10', 'ubuntu-20.04', 'ubuntu-22.04', ],