summaryrefslogtreecommitdiffstats
path: root/playbooks/gce
diff options
context:
space:
mode:
authorJhon Honce <jhonce@redhat.com>2014-09-25 17:25:27 -0700
committerJhon Honce <jhonce@redhat.com>2014-09-25 17:26:28 -0700
commitf08516929901730dc3b003f0942dbbd630663a80 (patch)
treef74f0da5180d594c16358ae60ab0e6563a2bd872 /playbooks/gce
parentdb76592c0b5342f54b8a061651ef496f9dc126c3 (diff)
downloadopenshift-f08516929901730dc3b003f0942dbbd630663a80.tar.gz
openshift-f08516929901730dc3b003f0942dbbd630663a80.tar.bz2
openshift-f08516929901730dc3b003f0942dbbd630663a80.tar.xz
openshift-f08516929901730dc3b003f0942dbbd630663a80.zip
Add cluster.sh
Diffstat (limited to 'playbooks/gce')
-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 }}"