From a9b15c7e1a0c14376cd66f166370694294398494 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Sat, 14 Mar 2020 16:35:07 -0500 Subject: [PATCH] update default container images - For tests, use bleeding-edge octopus branch - For production defaults, use ceph/ceph:v15.2 tag - For bootstrap, grab cephadm script from latest octopus branch Signed-off-by: Sage Weil --- doc/cephadm/index.rst | 2 +- qa/workunits/cephadm/test_cephadm.sh | 2 +- src/cephadm/cephadm | 2 +- src/common/options.cc | 2 +- test_cephadm.sh | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/cephadm/index.rst b/doc/cephadm/index.rst index ddce3b33025..dc8009926f2 100644 --- a/doc/cephadm/index.rst +++ b/doc/cephadm/index.rst @@ -40,7 +40,7 @@ The ``cephadm`` utility is used to bootstrap a new Ceph Cluster. Use curl to fetch the standalone script:: - [monitor 1] # curl --silent --remote-name --location https://github.com/ceph/ceph/raw/master/src/cephadm/cephadm + [monitor 1] # curl --silent --remote-name --location https://github.com/ceph/ceph/raw/octopus/src/cephadm/cephadm [monitor 1] # chmod +x cephadm You can also get the utility by installing a package provided by diff --git a/qa/workunits/cephadm/test_cephadm.sh b/qa/workunits/cephadm/test_cephadm.sh index 6503287de8f..036cabc51dd 100755 --- a/qa/workunits/cephadm/test_cephadm.sh +++ b/qa/workunits/cephadm/test_cephadm.sh @@ -6,7 +6,7 @@ SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" FSID='00000000-0000-0000-0000-0000deadbeef' # images that are used -IMAGE_MASTER=${IMAGE_MASTER:-'docker.io/ceph/daemon-base:latest-master-devel'} +IMAGE_MASTER=${IMAGE_MASTER:-'quay.io/ceph-ci/ceph:octopus'} # octopus for octopus branch IMAGE_NAUTILUS=${IMAGE_NAUTILUS:-'docker.io/ceph/daemon-base:latest-nautilus'} IMAGE_MIMIC=${IMAGE_MIMIC:-'docker.io/ceph/daemon-base:latest-mimic'} diff --git a/src/cephadm/cephadm b/src/cephadm/cephadm index 7bac5cbb5cc..cd4e0f8cef4 100755 --- a/src/cephadm/cephadm +++ b/src/cephadm/cephadm @@ -1,6 +1,6 @@ #!/usr/bin/python3 -DEFAULT_IMAGE='docker.io/ceph/daemon-base:latest-master-devel' # FIXME when octopus is ready!!! +DEFAULT_IMAGE='docker.io/ceph/ceph:v15.2' DATA_DIR='/var/lib/ceph' LOG_DIR='/var/log/ceph' LOCK_DIR='/run/cephadm' diff --git a/src/common/options.cc b/src/common/options.cc index 16c36b243e1..af6098925a7 100644 --- a/src/common/options.cc +++ b/src/common/options.cc @@ -439,7 +439,7 @@ std::vector