diff options
author | Jhon Honce <jhonce@redhat.com> | 2014-10-06 08:24:16 -0700 |
---|---|---|
committer | Jhon Honce <jhonce@redhat.com> | 2014-10-06 08:24:16 -0700 |
commit | db6d94e538cd373e92c83a887039ffa54a2ab75a (patch) | |
tree | 1598f9150edac15c791f2d93dff7d979fa24bc4f /playbooks/gce/os3-minion | |
parent | c54830c66efe0656442be312bf0dbbbdc0f58940 (diff) | |
parent | b00727520bc903efc02ece721c3500e599f18b75 (diff) | |
download | openshift-db6d94e538cd373e92c83a887039ffa54a2ab75a.tar.gz openshift-db6d94e538cd373e92c83a887039ffa54a2ab75a.tar.bz2 openshift-db6d94e538cd373e92c83a887039ffa54a2ab75a.tar.xz openshift-db6d94e538cd373e92c83a887039ffa54a2ab75a.zip |
Merge pull request #9 from jwhonce/wip/registry
WIP Infra - Deploy GCE openshift v3 cluster
Diffstat (limited to 'playbooks/gce/os3-minion')
-rw-r--r-- | playbooks/gce/os3-minion/terminate.yml | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/playbooks/gce/os3-minion/terminate.yml b/playbooks/gce/os3-minion/terminate.yml index d31f175e1..0c7a2f55e 100644 --- a/playbooks/gce/os3-minion/terminate.yml +++ b/playbooks/gce/os3-minion/terminate.yml @@ -28,12 +28,13 @@ - 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 }}" -# state: deleted -# with_items: gce.instance_names + - 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 |