terminate.yml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. ---
  2. - name: Terminate instance(s)
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. gather_facts: no
  7. vars_files:
  8. - vars.yml
  9. tasks:
  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['tag_clusterid_' ~ cluster_id] | default([])) | difference(['localhost'])
  16. - name: Unsubscribe VMs
  17. hosts: oo_hosts_to_terminate
  18. roles:
  19. - role: rhel_unsubscribe
  20. when: deployment_type in ['atomic-enterprise', 'enterprise', 'openshift-enterprise'] and
  21. ansible_distribution == "RedHat" and
  22. lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
  23. default('no', True) | lower in ['no', 'false']
  24. - name: Terminate instances
  25. hosts: localhost
  26. connection: local
  27. become: no
  28. gather_facts: no
  29. tasks:
  30. - name: Remove tags from instances
  31. ec2_tag:
  32. resource: "{{ hostvars[item]['ec2_id'] }}"
  33. region: "{{ hostvars[item]['ec2_region'] }}"
  34. state: absent
  35. tags:
  36. environment: "{{ hostvars[item]['ec2_tag_environment'] }}"
  37. clusterid: "{{ hostvars[item]['ec2_tag_clusterid'] }}"
  38. host-type: "{{ hostvars[item]['ec2_tag_host-type'] }}"
  39. sub_host_type: "{{ hostvars[item]['ec2_tag_sub-host-type'] }}"
  40. with_items: groups.oo_hosts_to_terminate
  41. when: "'oo_hosts_to_terminate' in groups"
  42. - name: Terminate instances
  43. ec2:
  44. state: absent
  45. instance_ids: ["{{ hostvars[item].ec2_id }}"]
  46. region: "{{ hostvars[item].ec2_region }}"
  47. ignore_errors: yes
  48. register: ec2_term
  49. with_items: groups.oo_hosts_to_terminate
  50. when: "'oo_hosts_to_terminate' in groups"
  51. # Fail if any of the instances failed to terminate with an error other
  52. # than 403 Forbidden
  53. - fail:
  54. msg: "Terminating instance {{ item.ec2_id }} failed with message {{ item.msg }}"
  55. when: "'oo_hosts_to_terminate' in groups and item.has_key('failed') and item.failed"
  56. with_items: ec2_term.results
  57. - name: Stop instance if termination failed
  58. ec2:
  59. state: stopped
  60. instance_ids: ["{{ item.item.ec2_id }}"]
  61. region: "{{ item.item.ec2_region }}"
  62. register: ec2_stop
  63. when: "'oo_hosts_to_terminate' in groups and item.has_key('failed') and item.failed"
  64. with_items: ec2_term.results
  65. - name: Rename stopped instances
  66. ec2_tag: resource={{ item.item.item.ec2_id }} region={{ item.item.item.ec2_region }} state=present
  67. args:
  68. tags:
  69. Name: "{{ item.item.item.ec2_tag_Name }}-terminate"
  70. with_items: ec2_stop.results
  71. when: ec2_stop | changed