terminate.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  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_masters_to_terminate
  7. add_host: name={{ item }} groups=oo_masters_to_terminate
  8. with_items: oo_host_group_exp | default([])
  9. - name: Terminate master instances
  10. hosts: localhost
  11. connection: local
  12. gather_facts: no
  13. tasks:
  14. - name: Terminate master instances
  15. gce:
  16. service_account_email: "{{ gce_service_account_email }}"
  17. pem_file: "{{ gce_pem_file }}"
  18. project_id: "{{ gce_project_id }}"
  19. state: 'absent'
  20. instance_names: "{{ groups['oo_masters_to_terminate'] }}"
  21. disks: "{{ groups['oo_masters_to_terminate'] }}"
  22. register: gce
  23. when: "'oo_masters_to_terminate' in groups"
  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
  33. when: "'oo_masters_to_terminate' in groups"