From f08516929901730dc3b003f0942dbbd630663a80 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Thu, 25 Sep 2014 17:25:27 -0700 Subject: Add cluster.sh --- playbooks/gce/os3-minion/terminate.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 playbooks/gce/os3-minion/terminate.yml (limited to 'playbooks/gce/os3-minion') diff --git a/playbooks/gce/os3-minion/terminate.yml b/playbooks/gce/os3-minion/terminate.yml new file mode 100644 index 000000000..8a618ecb8 --- /dev/null +++ b/playbooks/gce/os3-minion/terminate.yml @@ -0,0 +1,18 @@ +- name: "populate oo_hosts_to_terminate host group if needed" + hosts: localhost + gather_facts: no + tasks: + - name: Evaluate oo_host_group_exp if it's set + add_host: "name={{ item }} groups=oo_hosts_to_terminate" + with_items: "{{ oo_host_group_exp | default('') }}" + when: oo_host_group_exp is defined + +- name: "Terminate instances" + hosts: localhost + connection: local + tasks: + - name: Terminate master instances + local_action: + module: gce + state: 'absent' + instance_names: "{{ oo_hosts_to_terminate }}" -- cgit v1.2.3