terminate.yml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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_become: "{{ 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. 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. - name: Terminate instances(s)
  27. hosts: localhost
  28. become: no
  29. connection: local
  30. gather_facts: no
  31. vars_files:
  32. - vars.yml
  33. tasks:
  34. - name: Terminate instances that were previously launched
  35. local_action:
  36. module: gce
  37. state: 'absent'
  38. name: "{{ item }}"
  39. service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
  40. pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
  41. project_id: "{{ lookup('env', 'gce_project_id') }}"
  42. zone: "{{ lookup('env', 'zone') }}"
  43. with_items: groups['oo_hosts_to_terminate'] | default([], true)
  44. when: item is defined
  45. #- include: ../openshift-node/terminate.yml
  46. # vars:
  47. # gce_service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
  48. # gce_pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
  49. # gce_project_id: "{{ lookup('env', 'gce_project_id') }}"
  50. #
  51. #- include: ../openshift-master/terminate.yml
  52. # vars:
  53. # gce_service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
  54. # gce_pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
  55. # gce_project_id: "{{ lookup('env', 'gce_project_id') }}"