summaryrefslogtreecommitdiffstats
path: root/src/ceph-volume/ceph_volume/tests/functional/simple/centos7/filestore/dmcrypt-luks/test.yml
blob: 24e2c0353c942e831f8ea6abebb4d348d889c627 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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 }}"