terminate.yml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. ---
  2. - name: Populate oo_masters_to_terminate host group if needed
  3. hosts: localhost
  4. gather_facts: no
  5. tasks:
  6. - name: Evaluate oo_host_group_exp if it's set
  7. add_host: "name={{ item }} groups=oo_masters_to_terminate"
  8. with_items: "{{ oo_host_group_exp | default('') }}"
  9. when: oo_host_group_exp is defined
  10. - name: Terminate master instances
  11. hosts: localhost
  12. connection: local
  13. gather_facts: no
  14. tasks:
  15. - name: Terminate master instances
  16. gce:
  17. service_account_email: "{{ gce_service_account_email }}"
  18. pem_file: "{{ gce_pem_file }}"
  19. project_id: "{{ gce_project_id }}"
  20. state: 'absent'
  21. instance_names: "{{ groups['oo_masters_to_terminate'] }}"
  22. disks: "{{ groups['oo_masters_to_terminate'] }}"
  23. register: gce
  24. - name: Remove disks of instances
  25. gce_pd:
  26. service_account_email: "{{ gce_service_account_email }}"
  27. pem_file: "{{ gce_pem_file }}"
  28. project_id: "{{ gce_project_id }}"
  29. name: "{{ item }}"
  30. zone: "{{ gce.zone }}"
  31. state: absent
  32. with_items: gce.instance_names