terminate.yml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. - name: Terminate instance(s)
  2. hosts: localhost
  3. become: no
  4. connection: local
  5. gather_facts: no
  6. vars_files:
  7. - vars.yml
  8. tasks:
  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['tag_environment_' ~ cluster_env]|default([])) | groups['tag_clusterid_' ~ cluster_id ] | default([])
  15. - name: Unsubscribe VMs
  16. hosts: oo_hosts_to_terminate
  17. vars_files:
  18. - vars.yml
  19. roles:
  20. - role: rhel_unsubscribe
  21. when: deployment_type == "enterprise" and
  22. ansible_distribution == "RedHat" and
  23. lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
  24. default('no', True) | lower in ['no', 'false']
  25. - hosts: localhost
  26. become: no
  27. connection: local
  28. gather_facts: no
  29. vars_files:
  30. - vars.yml
  31. tasks:
  32. - name: Delete the OpenStack Stack
  33. command: 'heat stack-delete openshift-ansible-{{ cluster_id }}-stack'
  34. register: stack_delete_result
  35. changed_when: stack_delete_result.rc == 0
  36. failed_when: stack_delete_result.rc != 0 and 'could not be found' not in stack_delete_result.stdout
  37. - name: Wait for the completion of the OpenStack Stack deletion
  38. shell: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack | awk ''$2 == "stack_status" {print $4}'''
  39. when: stack_delete_result.changed
  40. register: stack_show_result
  41. until: stack_show_result.stdout != 'DELETE_IN_PROGRESS'
  42. retries: 60
  43. delay: 1
  44. failed_when: '"Stack not found" not in stack_show_result.stderr and
  45. stack_show_result.stdout != "DELETE_COMPLETE"'