summaryrefslogtreecommitdiffstats
path: root/playbooks/gce/os3-minion/terminate.yml
diff options
context:
space:
mode:
authorThomas Wiest <twiest@gmail.com>2014-10-30 16:52:44 -0400
committerThomas Wiest <twiest@gmail.com>2014-10-30 16:52:44 -0400
commitc292781afdcb57ee097f0840342b19a626d2a2c4 (patch)
tree1c1e004039a2f42730b385633462197a5c463e30 /playbooks/gce/os3-minion/terminate.yml
parentd57f8d6968f0b580d3201df197eda98ed5f8fe19 (diff)
parent317d20d2cd7847ac295e63015c540a882f77964e (diff)
downloadopenshift-c292781afdcb57ee097f0840342b19a626d2a2c4.tar.gz
openshift-c292781afdcb57ee097f0840342b19a626d2a2c4.tar.bz2
openshift-c292781afdcb57ee097f0840342b19a626d2a2c4.tar.xz
openshift-c292781afdcb57ee097f0840342b19a626d2a2c4.zip
Merge pull request #22 from twiest/pr
cleaned up unused GCE host types, changed back to using gce.ini, and added a better ssh detection on launch.
Diffstat (limited to 'playbooks/gce/os3-minion/terminate.yml')
-rw-r--r--playbooks/gce/os3-minion/terminate.yml40
1 files changed, 0 insertions, 40 deletions
diff --git a/playbooks/gce/os3-minion/terminate.yml b/playbooks/gce/os3-minion/terminate.yml
deleted file mode 100644
index 0c7a2f55e..000000000
--- a/playbooks/gce/os3-minion/terminate.yml
+++ /dev/null
@@ -1,40 +0,0 @@
-- name: "populate oo_hosts_to_terminate host group if needed"
- hosts: localhost
- gather_facts: no
- tasks:
- - debug: var=oo_host_group_exp
-
- - 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
-
- - debug: msg="{{ groups['oo_hosts_to_terminate'] }}"
-
-
-- name: Terminate instances
- hosts: localhost
- connection: local
- tasks:
- - name: Terminate minion instances
- gce:
- service_account_email: "{{ gce_service_account_email }}"
- pem_file: "{{ gce_pem_file }}"
- project_id: "{{ gce_project_id }}"
- state: 'absent'
- instance_names: "{{ groups['oo_hosts_to_terminate'] }}"
- disks: "{{ groups['oo_hosts_to_terminate'] }}"
- register: gce
-
- - debug: var=gce
-
- - name: Remove disks of instances
- gce_pd:
- service_account_email: "{{ gce_service_account_email }}"
- pem_file: "{{ gce_pem_file }}"
- project_id: "{{ gce_project_id }}"
- name: "{{ item }}"
- zone: "{{ gce.zone }}"
- state: absent
- with_items: gce.instance_names
-