with all ceph releases moving to centos 9-based containers, teuthology
should prevent scheduling jobs until those container builds finish
update the DEFAULT_OS_VERSION for centos to 9 so it checks for those
containers when no --distro-version is specified
Fixes: https://tracker.ceph.com/issues/66096
Signed-off-by: Casey Bodley <cbodley@redhat.com>
DEFAULT_OS_VERSION = dict(
ubuntu="22.04",
fedora="25",
- centos="8.stream",
+ centos="9.stream",
opensuse="15.4",
sle="15.2",
rhel="8.6",
log = logging.getLogger(__name__)
-CONTAINER_DISTRO = 'centos/8' # the one to check for build_complete
+CONTAINER_DISTRO = 'centos/9' # the one to check for build_complete
CONTAINER_FLAVOR = 'default'