summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cfme/tasks/uninstall.yml
blob: cba734a0e7b2002815c969d6d97ba33e3f21d24a (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
---
- include_role:
    name: lib_openshift

- name: Uninstall CFME - ManageIQ
  debug:
    msg: Uninstalling Cloudforms Management Engine - ManageIQ

- name: Ensure the CFME project is removed
  oc_project:
    state: absent
    name: "{{ openshift_cfme_project }}"

- name: Ensure the CFME template is removed
  oc_obj:
    namespace: "{{ openshift_cfme_project }}"
    state: absent
    kind: template
    name: manageiq

- name: Ensure the CFME PVs are removed
  oc_obj:
    state: absent
    all_namespaces: True
    kind: pv
    name: "{{ item }}"
  with_items: "{{ openshift_cfme_pv_exports }}"

- name: Ensure the CFME user is removed
  oc_user:
    state: absent
    username: "{{ openshift_cfme_user }}"

- name: Ensure the CFME NFS Exports are removed
  file:
    path: /etc/exports.d/openshift_cfme.exports
    state: absent
  register: nfs_exports_removed

- name: Ensure the NFS export table is refreshed if exports were removed
  command: exportfs -ar
  when:
    - nfs_exports_removed.changed