terminate.yml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. - set_fact: scratch_group=tag_env-{{ cluster_id }}
  11. - add_host:
  12. name: "{{ item }}"
  13. groups: oo_hosts_to_terminate
  14. ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user | default(ansible_ssh_user, true) }}"
  15. ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}"
  16. with_items: groups[scratch_group] | default([], true) | difference(['localhost']) | difference(groups.status_terminated | default([], true))
  17. - name: Unsubscribe VMs
  18. hosts: oo_hosts_to_terminate
  19. vars_files:
  20. - vars.yml
  21. roles:
  22. - role: rhel_unsubscribe
  23. when: deployment_type == "enterprise" and
  24. ansible_distribution == "RedHat" and
  25. lookup('oo_option', 'rhel_skip_subscription') | default(rhsub_skip, True) |
  26. default('no', True) | lower in ['no', 'false']
  27. - name: Terminate instances(s)
  28. hosts: localhost
  29. become: no
  30. connection: local
  31. gather_facts: no
  32. vars_files:
  33. - vars.yml
  34. tasks:
  35. - name: Terminate instances that were previously launched
  36. local_action:
  37. module: gce
  38. state: 'absent'
  39. name: "{{ item }}"
  40. service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
  41. pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
  42. project_id: "{{ lookup('env', 'gce_project_id') }}"
  43. zone: "{{ lookup('env', 'zone') }}"
  44. with_items: groups['oo_hosts_to_terminate'] | default([], true)
  45. when: item is defined
  46. #- include: ../openshift-node/terminate.yml
  47. # vars:
  48. # gce_service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
  49. # gce_pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
  50. # gce_project_id: "{{ lookup('env', 'gce_project_id') }}"
  51. #
  52. #- include: ../openshift-master/terminate.yml
  53. # vars:
  54. # gce_service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
  55. # gce_pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
  56. # gce_project_id: "{{ lookup('env', 'gce_project_id') }}"