]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
cephadm: add centos 10 container images for cephadm build tests
authorJohn Mulligan <jmulligan@redhat.com>
Thu, 21 Aug 2025 16:40:00 +0000 (12:40 -0400)
committerJohn Mulligan <jmulligan@redhat.com>
Thu, 21 Aug 2025 17:12:29 +0000 (13:12 -0400)
Signed-off-by: John Mulligan <jmulligan@redhat.com>
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',
     ],