From 8599299c35ecc33deec29ef0e88b331300bf6a6d Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Wed, 28 Jul 2021 14:19:43 -0400 Subject: [PATCH] cephadm: default to quay.io, not docker.io Signed-off-by: Sage Weil --- src/cephadm/cephadm | 2 +- src/pybind/mgr/cephadm/module.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cephadm/cephadm b/src/cephadm/cephadm index 9b7348b8bc29c..76e65349b6c5f 100755 --- a/src/cephadm/cephadm +++ b/src/cephadm/cephadm @@ -1,6 +1,6 @@ #!/usr/bin/python3 -DEFAULT_IMAGE='docker.io/ceph/ceph:v15' +DEFAULT_IMAGE='quay.io/ceph/ceph:v15' DEFAULT_IMAGE_IS_MASTER=False LATEST_STABLE_RELEASE = 'octopus' DATA_DIR = '/var/lib/ceph' diff --git a/src/pybind/mgr/cephadm/module.py b/src/pybind/mgr/cephadm/module.py index 989a30fca5678..d74c433aecab4 100644 --- a/src/pybind/mgr/cephadm/module.py +++ b/src/pybind/mgr/cephadm/module.py @@ -162,7 +162,7 @@ class CephadmOrchestrator(orchestrator.Orchestrator, MgrModule): }, { 'name': 'container_image_base', - 'default': 'docker.io/ceph/ceph', + 'default': 'quay.io/ceph/ceph', 'desc': 'Container image name, without the tag', 'runtime': True, }, -- 2.39.5