terminate.yml 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ---
  2. # TODO: does not handle a non-existent cluster gracefully
  3. - name: Terminate instance(s)
  4. hosts: localhost
  5. become: no
  6. connection: local
  7. gather_facts: no
  8. vars_files:
  9. - vars.yml
  10. tasks:
  11. - set_fact: cluster_group=tag_clusterid-{{ cluster_id }}
  12. - add_host:
  13. name: "{{ item }}"
  14. groups: oo_hosts_to_terminate
  15. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  16. ansible_become: "{{ deployment_vars[deployment_type].become }}"
  17. with_items: '{{ groups[cluster_group] | default([]) }}'
  18. - name: Unsubscribe VMs
  19. hosts: oo_hosts_to_terminate
  20. vars_files:
  21. - vars.yml
  22. roles:
  23. - role: rhel_unsubscribe
  24. when: deployment_type in ['atomic-enterprise', 'enterprise', 'openshift-enterprise'] and
  25. ansible_distribution == "RedHat" and
  26. lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
  27. default('no', True) | lower in ['no', 'false']
  28. - name: Terminate instance(s)
  29. hosts: localhost
  30. become: no
  31. connection: local
  32. gather_facts: no
  33. vars_files:
  34. - vars.yml
  35. tasks:
  36. - name: Destroy VMs
  37. virt:
  38. name: '{{ item[0] }}'
  39. command: '{{ item[1] }}'
  40. uri: '{{ libvirt_uri }}'
  41. with_nested:
  42. - "{{ groups['oo_hosts_to_terminate'] }}"
  43. - [ destroy, undefine ]
  44. - name: Delete VM drives
  45. command: 'virsh -c {{ libvirt_uri }} vol-delete --pool {{ libvirt_storage_pool }} {{ item }}.qcow2'
  46. args:
  47. removes: '{{ libvirt_storage_pool_path }}/{{ item }}.qcow2'
  48. with_items: "{{ groups['oo_hosts_to_terminate'] }}"
  49. - name: Delete VM docker drives
  50. command: 'virsh -c {{ libvirt_uri }} vol-delete --pool {{ libvirt_storage_pool }} {{ item }}-docker.qcow2'
  51. args:
  52. removes: '{{ libvirt_storage_pool_path }}/{{ item }}-docker.qcow2'
  53. with_items: "{{ groups['oo_hosts_to_terminate'] }}"
  54. - name: Delete the VM cloud-init image
  55. file:
  56. path: '{{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso'
  57. state: absent
  58. with_items: "{{ groups['oo_hosts_to_terminate'] }}"
  59. - name: Remove the cloud-init config directory
  60. file:
  61. path: '{{ libvirt_storage_pool_path }}/{{ item }}_configdrive/'
  62. state: absent
  63. with_items: "{{ groups['oo_hosts_to_terminate'] }}"