terminate.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. - 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. connection: local
  27. gather_facts: no
  28. vars_files:
  29. - vars.yml
  30. tasks:
  31. - name: Delete the OpenStack Stack
  32. command: 'heat stack-delete openshift-ansible-{{ cluster_id }}-stack'
  33. register: stack_delete_result
  34. changed_when: stack_delete_result.rc == 0
  35. failed_when: stack_delete_result.rc != 0 and 'could not be found' not in stack_delete_result.stdout
  36. - name: Wait for the completion of the OpenStack Stack deletion
  37. shell: 'heat stack-show openshift-ansible-{{ cluster_id }}-stack | awk ''$2 == "stack_status" {print $4}'''
  38. when: stack_delete_result.changed
  39. register: stack_show_result
  40. until: stack_show_result.stdout != 'DELETE_IN_PROGRESS'
  41. retries: 60
  42. delay: 1
  43. failed_when: '"Stack not found" not in stack_show_result.stderr and
  44. stack_show_result.stdout != "DELETE_COMPLETE"'