terminate.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. ---
  2. - name: Terminate instance(s)
  3. hosts: localhost
  4. become: no
  5. connection: local
  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_become: "{{ deployment_vars[deployment_type].become }}"
  15. with_items: "{{ (groups['meta-environment_' ~ cluster_env]|default([])) | intersect(groups['meta-clusterid_' ~ cluster_id ]|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 in ['atomic-enterprise', 'enterprise', 'openshift-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. - hosts: localhost
  27. become: no
  28. connection: local
  29. gather_facts: no
  30. vars_files:
  31. - vars.yml
  32. tasks:
  33. - name: Delete the OpenStack Stack
  34. command: 'heat stack-delete openshift-ansible-{{ cluster_id }}-stack'
  35. register: stack_delete_result
  36. changed_when: stack_delete_result.rc == 0
  37. failed_when: stack_delete_result.rc != 0 and 'could not be found' not in stack_delete_result.stdout
  38. - name: Wait for the completion of the OpenStack Stack deletion
  39. shell: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack | awk ''$2 == "stack_status" {print $4}'''
  40. when: stack_delete_result.changed
  41. register: stack_show_result
  42. until: stack_show_result.stdout != 'DELETE_IN_PROGRESS'
  43. retries: 60
  44. delay: 5
  45. failed_when: '"Stack not found" not in stack_show_result.stderr and
  46. stack_show_result.stdout != "DELETE_COMPLETE"'