summaryrefslogtreecommitdiffstats
path: root/ci/ansible/roles/cleaner/tasks/main.yml
blob: 4b3b0c2fe5e1b59077c9d1a9e6bb7679db873871 (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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
---
- name: kill osdslet daemon service
  shell: killall osdslet
  ignore_errors: yes
  when: container_enabled == false

- name: kill osdslet containerized service
  docker:
    image: opensdsio/opensds-controller:latest
    state: stopped
  when: container_enabled == true

- name: kill osdsdock daemon service
  shell: killall osdsdock
  ignore_errors: yes
  when: container_enabled == false

- name: kill osdsdock containerized service
  docker:
    image: opensdsio/opensds-dock:latest
    state: stopped
  when: container_enabled == true

- name: kill etcd daemon service
  shell: killall etcd
  ignore_errors: yes
  when: db_driver == "etcd" and container_enabled == false

- name: kill etcd containerized service
  docker:
    image: quay.io/coreos/etcd:latest
    state: stopped
  when: db_driver == "etcd" and container_enabled == true

- name: remove etcd service data
  file:
    path: "{{ etcd_dir }}"
    state: absent
    force: yes
  ignore_errors: yes
  when: db_driver == "etcd"

- name: remove etcd tarball
  file:
    path: "/opt/{{ etcd_tarball }}"
    state: absent
    force: yes
  ignore_errors: yes
  when: db_driver == "etcd"

- name: clean opensds release files
  file:
    path: "{{ opensds_dir }}"
    state: absent
    force: yes
  ignore_errors: yes

- name: clean opensds release tarball file
  file:
    path: "{{ opensds_tarball_url }}"
    state: absent
    force: yes
  ignore_errors: yes

- name: clean opensds flexvolume plugins binary file
  file:
    path: "{{ flexvolume_plugin_dir }}"
    state: absent
    force: yes
  ignore_errors: yes
  when: nbp_plugin_type == "flexvolume"

- name: clean nbp release files
  file:
    path: "{{ nbp_dir }}"
    state: absent
    force: yes
  ignore_errors: yes

- name: clean nbp release tarball file
  file:
    path: "{{ nbp_tarball_url }}"
    state: absent
    force: yes
  ignore_errors: yes

- name: clean all opensds configuration files
  file:
    path: "{{ opensds_config_dir }}"
    state: absent
    force: yes
  ignore_errors: yes

- name: clean all opensds log files
  file:
    path: "{{ opensds_log_dir }}"
    state: absent
    force: yes
  ignore_errors: yes

- name: check if it existed before cleaning a volume group
  shell: vgdisplay {{ vg_name }}
  ignore_errors: yes
  register: vg_existed
  when: enabled_backend == "lvm"

- name: remove a volume group if lvm backend specified
  lvg:
    vg: "{{ vg_name }}"
    state: absent
  when: enabled_backend == "lvm" and vg_existed.rc == 0

- name: remove physical volumes if lvm backend specified
  shell: pvremove {{ item }}
  with_items: "{{ pv_devices }}"
  when: enabled_backend == "lvm"

- name: stop cinder-standalone service
  shell: docker-compose down
  become: true
  args:
    chdir: "{{ cinder_data_dir }}/cinder/contrib/block-box"
  when: enabled_backend == "cinder"

- name: clean the volume group of cinder
  shell:
    _raw_params: |

      # _clean_lvm_volume_group removes all default LVM volumes
      #
      # Usage: _clean_lvm_volume_group $vg
      function _clean_lvm_volume_group {
          local vg=$1

          # Clean out existing volumes
          sudo lvremove -f $vg
      }

      # _remove_lvm_volume_group removes the volume group
      #
      # Usage: _remove_lvm_volume_group $vg
      function _remove_lvm_volume_group {
          local vg=$1

          # Remove the volume group
          sudo vgremove -f $vg
      }

      # _clean_lvm_backing_file() removes the backing file of the
      # volume group
      #
      # Usage: _clean_lvm_backing_file() $backing_file
      function _clean_lvm_backing_file {
          local backing_file=$1

          # If the backing physical device is a loop device, it was probably setup by DevStack
          if [[ -n "$backing_file" ]] && [[ -e "$backing_file" ]]; then
              local vg_dev
              vg_dev=$(sudo losetup -j $backing_file | awk -F':' '/'.img'/ { print $1}')
              if [[ -n "$vg_dev" ]]; then
                  sudo losetup -d $vg_dev
              fi
              rm -f $backing_file
          fi
      }

      # clean_lvm_volume_group() cleans up the volume group and removes the
      # backing file
      #
      # Usage: clean_lvm_volume_group $vg
      function clean_lvm_volume_group {
          local vg=$1

          _clean_lvm_volume_group $vg
          _remove_lvm_volume_group $vg
          # if there is no logical volume left, it's safe to attempt a cleanup
          # of the backing file
          if [[ -z "$(sudo lvs --noheadings -o lv_name $vg 2>/dev/null)" ]]; then
              _clean_lvm_backing_file {{ cinder_data_dir }}/${vg}.img
          fi
      }

      clean_lvm_volume_group {{cinder_volume_group}}

  args:
    executable: /bin/bash
  become: true
  when: enabled_backend == "cinder"