From eda0d5b64217df2ec0f97716561c64465aeda890 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Thu, 21 Aug 2025 12:40:00 -0400 Subject: [PATCH] cephadm: add centos 10 container images for cephadm build tests Signed-off-by: John Mulligan (cherry picked from commit 32e98c484ac1ee518d8a479f17ccf4c5b7a7264b) --- src/cephadm/tests/build/test_cephadm_build.py | 11 +++++++++++ 1 file changed, 11 insertions(+) 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', ], -- 2.39.5