From: Andrew Schoen Date: Wed, 23 Aug 2017 18:43:31 +0000 (-0500) Subject: ceph-osd: ceph-volume requires --data to be in vg/lv format X-Git-Tag: v3.0.0rc4~20^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=758c31b1cd69d37f91a7ea248fa6c73feb99a847;p=ceph-ansible.git ceph-osd: ceph-volume requires --data to be in vg/lv format Signed-off-by: Andrew Schoen --- diff --git a/roles/ceph-osd/tasks/scenarios/lvm.yml b/roles/ceph-osd/tasks/scenarios/lvm.yml index e149c1409..a1c5994c9 100644 --- a/roles/ceph-osd/tasks/scenarios/lvm.yml +++ b/roles/ceph-osd/tasks/scenarios/lvm.yml @@ -1,4 +1,4 @@ --- - name: use ceph-volume to create filestore osds with dedicated journals - command: "ceph-volume lvm create --filestore --data {{ item.data }} --journal {{ item.journal }}" + command: "ceph-volume lvm create --filestore --data {{ item.data_vg }}/{{ item.data }} --journal {{ item.journal }}" with_items: "{{ lvm_volumes }}"