From: Alfredo Deza Date: Thu, 9 Nov 2017 21:07:53 +0000 (-0500) Subject: ceph-volume tests.functional create a specific test.yml for simple activate X-Git-Tag: v12.2.2~22^2~14 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=8f425b678f6c947a8c83f121be4fa46151fd6664;p=ceph.git ceph-volume tests.functional create a specific test.yml for simple activate Signed-off-by: Alfredo Deza (cherry picked from commit 37bde0d3b37a87c456438b0edc0cb9e2dcd39120) --- diff --git a/src/ceph-volume/ceph_volume/tests/functional/simple/centos7/filestore/activate/test.yml b/src/ceph-volume/ceph_volume/tests/functional/simple/centos7/filestore/activate/test.yml new file mode 100644 index 000000000000..24e2c0353c94 --- /dev/null +++ b/src/ceph-volume/ceph_volume/tests/functional/simple/centos7/filestore/activate/test.yml @@ -0,0 +1,31 @@ +--- + +- hosts: osds + become: yes + tasks: + + - name: list all OSD directories + find: + paths: /var/lib/ceph/osd + file_type: directory + register: osd_paths + + - name: scan all OSD directories + command: "ceph-volume --cluster={{ cluster }} simple scan {{ item.path }}" + environment: + CEPH_VOLUME_DEBUG: 1 + with_items: + - "{{ osd_paths.files }}" + + - name: list all OSD JSON files + find: + paths: /etc/ceph/osd + file_type: file + register: osd_configs + + - name: activate all scanned OSDs + command: "ceph-volume --cluster={{ cluster }} simple activate --file {{ item.path }}" + environment: + CEPH_VOLUME_DEBUG: 1 + with_items: + - "{{ osd_configs.files }}"