From 279044155fdb1bb7c25d028d81075e443aaeca91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Han?= Date: Wed, 10 Oct 2018 15:16:43 -0400 Subject: [PATCH] validate: print a message for old scenarios MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ceph-disk is not supported anymore, so all the newly created OSDs will be configured using ceph-volume. Signed-off-by: Sébastien Han (cherry picked from commit 9ea1e494076c819cc623fca234ece79fd38883ba) --- roles/ceph-validate/tasks/check_system.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/roles/ceph-validate/tasks/check_system.yml b/roles/ceph-validate/tasks/check_system.yml index 704cb3e6d..aa107cb5a 100644 --- a/roles/ceph-validate/tasks/check_system.yml +++ b/roles/ceph-validate/tasks/check_system.yml @@ -97,7 +97,10 @@ - name: warn users that ceph-disk scenarios will be removed on 3.3 debug: - msg: "You are running 3.2 and should start considering using ceph-volume to deploy your OSDs. ceph-disk based deployments will be impossible in 3.3." + msg: | + osd_scenario is set to {{ osd_scenario }}, this variable is not used anymore and defaults to 'lvm'. + If you have something different than 'lvm', this means you want ceph-ansible to manage your ceph-disk OSDs. + So basically, ceph-ansible can still start your ceph-disk osd services run_once: true when: - osd_group_name in group_names