From: Sage Weil Date: Tue, 24 Mar 2020 16:46:30 +0000 (-0500) Subject: mgr/cephadm: use docker.io in default container image name X-Git-Tag: v16.1.0~2797^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d4f367a7ea96c97c7aa437f79a1c2dabb2c7caf8;p=ceph.git mgr/cephadm: use docker.io in default container image name Not all hosts have docker.io configured as a default registry. Signed-off-by: Sage Weil --- diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index 4b361abb548f..fac6b3c05bc3 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -590,7 +590,7 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule): }, { 'name': 'container_image_base', - 'default': 'ceph/ceph', + 'default': 'docker.io/ceph/ceph', 'desc': 'Container image name, without the tag', 'runtime': True, },