summaryrefslogtreecommitdiffstats
path: root/playbooks
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks')
-rw-r--r--playbooks/gce/os3-master/terminate.yml18
-rw-r--r--playbooks/gce/os3-minion/terminate.yml18
2 files changed, 36 insertions, 0 deletions
diff --git a/playbooks/gce/os3-master/terminate.yml b/playbooks/gce/os3-master/terminate.yml
new file mode 100644
index 000000000..8a618ecb8
--- /dev/null
+++ b/playbooks/gce/os3-master/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 }}"
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 }}"