From 37bde0d3b37a87c456438b0edc0cb9e2dcd39120 Mon Sep 17 00:00:00 2001 From: Alfredo Deza Date: Thu, 9 Nov 2017 16:07:53 -0500 Subject: [PATCH] ceph-volume tests.functional create a specific test.yml for simple activate Signed-off-by: Alfredo Deza --- .../centos7/filestore/activate/test.yml | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/ceph-volume/ceph_volume/tests/functional/simple/centos7/filestore/activate/test.yml 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 00000000000..24e2c0353c9 --- /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 }}" -- 2.39.5