summaryrefslogtreecommitdiffstats
path: root/playbooks/gce/openshift-cluster/terminate.yml
blob: ee536be698eb16c799f13262d69939d4e5d872f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
- name: Terminate instance(s)
  hosts: localhost

  vars_files:
    - vars.yml

  tasks:
    - debug: msg="Retrieve node names"
    - debug: msg="Retrieve master names"
    - debug: var=groups

- include: ../openshift-node/terminate.yml
  vars:
    oo_host_group_exp: 'groups["tag_env-host-type-{{ cluster_id }}-openshift-node"]'
    gce_service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
    gce_pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
    gce_project_id: "{{ lookup('env', 'gce_project_id') }}"

- include: ../openshift-master/terminate.yml
  vars:
    oo_host_group_exp: 'groups["tag_env-host-type-{{ cluster_id }}-openshift-master"]'
    gce_service_account_email: "{{ lookup('env', 'gce_service_account_email_address') }}"
    gce_pem_file: "{{ lookup('env', 'gce_service_account_pem_file_path') }}"
    gce_project_id: "{{ lookup('env', 'gce_project_id') }}"