ref = ctx.config.get("branch", "main")
if not ctx.ceph[cluster_name].image:
if not container_image_name:
- raise Exception("Configuration error occurred. "
- "The 'image' value is undefined for 'cephadm' task. "
- "Please provide corresponding options in the task's "
- "config, task 'overrides', or teuthology 'defaults' "
- "section.")
+ container_image_name = 'quay.ceph.io/ceph-ci/ceph'
sha1 = config.get('sha1')
flavor = config.get('flavor', 'default')
+ distro_suffix = config.get('distro-suffix', None)
if any(_ in container_image_name for _ in (':', '@')):
log.info('Provided image contains tag or digest, using it as is')