terminate.yml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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: Destroy VMs
  17. virt:
  18. name: '{{ item[0] }}'
  19. command: '{{ item[1] }}'
  20. uri: '{{ libvirt_uri }}'
  21. with_nested:
  22. - groups['oo_hosts_to_terminate']
  23. - [ destroy, undefine ]
  24. - name: Delete VMs drives
  25. command: 'virsh -c {{ libvirt_uri }} vol-delete --pool {{ libvirt_storage_pool }} {{ item }}.qcow2'
  26. args:
  27. removes: '{{ libvirt_storage_pool_path }}/{{ item }}.qcow2'
  28. with_items: groups['oo_hosts_to_terminate']
  29. - name: Delete the VM cloud-init image
  30. file:
  31. path: '{{ libvirt_storage_pool_path }}/{{ item }}_cloud-init.iso'
  32. state: absent
  33. with_items: groups['oo_hosts_to_terminate']
  34. - name: Remove the cloud-init config directory
  35. file:
  36. path: '{{ libvirt_storage_pool_path }}/{{ item }}_configdrive/'
  37. state: absent
  38. with_items: groups['oo_hosts_to_terminate']