From: Sébastien Han Date: Mon, 1 Oct 2018 13:27:06 +0000 (+0200) Subject: validate: add warning for ceph-disk X-Git-Tag: v3.2.0beta5~9 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=0580328340fc7d53b54f5c1825b570b6c000f701;p=ceph-ansible.git validate: add warning for ceph-disk ceph-disk will be removed in 3.3 and we encourage to start using ceph-volume as of 3.2. Signed-off-by: Sébastien Han --- diff --git a/roles/ceph-validate/tasks/check_system.yml b/roles/ceph-validate/tasks/check_system.yml index 1707e7446..1bda37dee 100644 --- a/roles/ceph-validate/tasks/check_system.yml +++ b/roles/ceph-validate/tasks/check_system.yml @@ -92,3 +92,11 @@ - ansible_distribution in ['RedHat', 'CentOS'] - ansible_distribution_version < '7.4' - iscsi_gw_group_name in group_names + +- 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." + run_once: true + when: + - osd_group_name in group_names + - osd_scenario != 'lvm' \ No newline at end of file