From: Ali Maredia Date: Wed, 29 Aug 2018 16:06:52 +0000 (-0400) Subject: infrastructure playbooks: remove lv-create error msg X-Git-Tag: v3.2.0beta2~24 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=77eb459a8859ebc55236d70b787b840725300475;p=ceph-ansible.git infrastructure playbooks: remove lv-create error msg remove error message when PV creation fails Signed-off-by: Ali Maredia --- diff --git a/infrastructure-playbooks/lv-create.yml b/infrastructure-playbooks/lv-create.yml index d8f9f2d64..b1c87d525 100644 --- a/infrastructure-playbooks/lv-create.yml +++ b/infrastructure-playbooks/lv-create.yml @@ -35,19 +35,6 @@ # Make entire nvme device a VG - name: add nvme device as lvm pv - lvg: - force: yes - pvs: "{{ nvme_device }}" - pesize: 4 - state: present - ignore_errors: True - register: nvme_pv_create - - - fail: - msg: "PV creation for {{ nvme_device }} has failed. Please verify the device is ready for use by running `wipefs --all {{ nvme_device }}`" - when: nvme_pv_create.rc != 0 - - - name: add vg to nvme device pv lvg: force: yes pvs: "{{ nvme_device }}" @@ -82,22 +69,6 @@ - "{{ nvme_device_lvs }}" # Make sure all hdd devices have a unique volume group - - name: create pvs on all hdd devices - lvg: - force: yes - pvs: "{{ item }}" - pesize: 4 - state: present - ignore_errors: True - register: hdd_pv_create - with_items: - - "{{ hdd_devices }}" - - - fail: - msg: "PV creation for {{ item.item }} has failed. Please verify the device is ready for use by running `wipefs --all {{ item.item }}`" - when: item.rc != 0 - loop: "{{ hdd_pv_create.results }}" - - name: create vgs for all hdd devices lvg: force: yes