]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
cephadm: add centos 10 container images for cephadm build tests
authorJustin Caratzas <jcaratza@ibm.com>
Thu, 18 Sep 2025 20:45:01 +0000 (16:45 -0400)
committerJustin Caratzas <jcaratza@ibm.com>
Mon, 22 Sep 2025 16:33:11 +0000 (12:33 -0400)
Signed-off-by: John Mulligan <jmulligan@redhat.com>
(cherry picked from commit 32e98c484ac1ee518d8a479f17ccf4c5b7a7264b)
(cherry picked from commit eda0d5b64217df2ec0f97716561c64465aeda890)

Resolves: rhbz#2388210

src/cephadm/tests/build/test_cephadm_build.py

index 90ce9e387fc1be6aa34f4c073776e8ee90d08789..185ffbf6bb17c52770cbde4ed20615a3ecb9d046 100644 (file)
@@ -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',
     ],