summaryrefslogtreecommitdiffstats
path: root/ci/ansible/roles/osdsdock/tasks/main.yml
blob: 24629053dfd261350fe20c47ffe77219572891c1 (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
---
- name: include scenarios/lvm.yml
  include: scenarios/lvm.yml
  when: enabled_backend == "lvm"

- name: include scenarios/ceph.yml
  include: scenarios/ceph.yml
  when: enabled_backend == "ceph"

- name: include scenarios/cinder.yml
  include: scenarios/cinder.yml
  when: enabled_backend == "cinder" and use_cinder_standalone == false

- name: include scenarios/cinder_standalone.yml
  include: scenarios/cinder_standalone.yml
  when: enabled_backend == "cinder" and use_cinder_standalone == true

- name: run osdsdock daemon service
  shell:
    cmd: |
      i=0
      while
        i="$((i+1))"
        [ "$i" -lt 4 ]
      do
        nohup bin/osdsdock &>/dev/null &
        sleep 5
        ps aux | grep osdsdock | grep -v grep && break
      done
  args:
    chdir: "{{ opensds_build_dir }}/out"