From d5dfc63c89268c51253f3465a6e39be7cdfe12e4 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Wed, 8 Nov 2017 08:47:39 +0100 Subject: [PATCH] osd: fix automatic prepare when auto_discover Use `devices` variable instead of `ansible_devices`, otherwise it means we are not using the devices which have been 'auto discovered' Signed-off-by: Guillaume Abrioux --- roles/ceph-osd/tasks/scenarios/collocated.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/roles/ceph-osd/tasks/scenarios/collocated.yml b/roles/ceph-osd/tasks/scenarios/collocated.yml index 9c6621aff..9ec407eb8 100644 --- a/roles/ceph-osd/tasks/scenarios/collocated.yml +++ b/roles/ceph-osd/tasks/scenarios/collocated.yml @@ -33,7 +33,7 @@ docker run --net=host \ --pid=host \ --privileged=true \ - --name=ceph-osd-prepare-{{ ansible_hostname }}-{{ item.key }} \ + --name=ceph-osd-prepare-{{ ansible_hostname }}-{{ item.split('/')[-1] }} \ -v /etc/ceph:/etc/ceph \ -v /var/lib/ceph/:/var/lib/ceph/ \ -v /dev:/dev \ @@ -41,18 +41,15 @@ -e DEBUG=verbose \ -e CLUSTER={{ cluster }} \ -e CEPH_DAEMON=OSD_CEPH_DISK_PREPARE \ - -e OSD_DEVICE=/dev/{{ item.key }} \ + -e OSD_DEVICE={{ item }} \ {{ docker_env_args }} \ {{ ceph_osd_docker_prepare_env }} \ {{ ceph_docker_registry }}/{{ ceph_docker_image }}:{{ ceph_docker_image_tag }} - with_dict: "{{ ansible_devices }}" + with_items: "{{ devices }}" when: - osd_auto_discovery - containerized_deployment - - ansible_devices is defined - - item.value.removable == "0" - - item.value.partitions|count == 0 - - item.value.holders|count == 0 + - devices is defined - name: manually prepare ceph "{{ osd_objectstore }}" non-containerized osd disk(s) with collocated osd data and journal command: "ceph-disk prepare {{ ceph_disk_cli_options }} {{ item.1 }}"