terminate.yml 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. - name: Terminate instance(s)
  2. hosts: localhost
  3. connection: local
  4. gather_facts: no
  5. vars_files:
  6. - vars.yml
  7. tasks:
  8. - set_fact: cluster_group=tag_env_{{ cluster_id }}
  9. - add_host:
  10. name: "{{ item }}"
  11. groups: oo_hosts_to_terminate
  12. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"
  13. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  14. with_items: groups[cluster_group] | default([])
  15. - hosts: oo_hosts_to_terminate
  16. - hosts: localhost
  17. connection: local
  18. gather_facts: no
  19. vars_files:
  20. - vars.yml
  21. tasks:
  22. - name: Retrieve the floating IPs
  23. shell: "neutron floatingip-list | awk '/{{ hostvars[item].ansible_default_ipv4.address }}/ {print $2}'"
  24. with_items: groups['oo_hosts_to_terminate'] | default([])
  25. register: floating_ips_to_delete
  26. - name: Terminate instance(s)
  27. nova_compute:
  28. name: "{{ hostvars[item].os_name }}"
  29. state: absent
  30. with_items: groups['oo_hosts_to_terminate'] | default([])
  31. - name: Delete floating IPs
  32. command: "neutron floatingip-delete {{ item.stdout }}"
  33. with_items: floating_ips_to_delete.results | default([])
  34. - name: Destroy the network
  35. command: "heat stack-delete {{ openstack_network_prefix }}-stack"
  36. register: stack_delete_result
  37. changed_when: stack_delete_result.rc == 0
  38. failed_when: stack_delete_result.rc != 0 and 'could not be found' not in stack_delete_result.stdout