terminate.yml 1.8 KB

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