2016-02-10 10:51:39 +00:00
|
|
|
---
|
|
|
|
- hosts: localhost
|
2016-10-28 12:56:48 +00:00
|
|
|
become: false
|
2016-02-10 10:51:39 +00:00
|
|
|
gather_facts: no
|
|
|
|
vars:
|
2016-12-14 16:00:38 +00:00
|
|
|
mode: default
|
2016-02-10 10:51:39 +00:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: replace_test_id
|
|
|
|
set_fact:
|
2019-05-02 21:24:21 +00:00
|
|
|
test_name: "{{ test_id |regex_replace('\\.', '-') }}"
|
2016-02-10 10:51:39 +00:00
|
|
|
|
2019-05-16 07:27:43 +00:00
|
|
|
- name: set instance names
|
|
|
|
set_fact:
|
2016-12-14 16:00:38 +00:00
|
|
|
instance_names: >-
|
|
|
|
{%- if mode in ['separate', 'ha'] -%}
|
2019-05-02 21:24:21 +00:00
|
|
|
k8s-{{ test_name }}-1,k8s-{{ test_name }}-2,k8s-{{ test_name }}-3
|
2016-12-14 16:00:38 +00:00
|
|
|
{%- else -%}
|
2019-05-02 21:24:21 +00:00
|
|
|
k8s-{{ test_name }}-1,k8s-{{ test_name }}-2
|
2016-12-14 16:00:38 +00:00
|
|
|
{%- endif -%}
|
|
|
|
|
2018-12-06 10:33:38 +00:00
|
|
|
- name: stop gce instances
|
2021-07-12 07:00:47 +00:00
|
|
|
google.cloud.gcp_compute_instance:
|
2019-05-02 21:24:21 +00:00
|
|
|
instance_names: "{{ instance_names }}"
|
2018-12-06 10:33:38 +00:00
|
|
|
image: "{{ cloud_image | default(omit) }}"
|
|
|
|
service_account_email: "{{ gce_service_account_email }}"
|
2019-05-02 21:24:21 +00:00
|
|
|
pem_file: "{{ gce_pem_file | default(omit) }}"
|
|
|
|
credentials_file: "{{ gce_credentials_file | default(omit) }}"
|
2018-12-06 10:33:38 +00:00
|
|
|
project_id: "{{ gce_project_id }}"
|
2019-05-02 21:24:21 +00:00
|
|
|
zone: "{{ cloud_region | default('europe-west1-b') }}"
|
2018-12-06 10:33:38 +00:00
|
|
|
state: 'stopped'
|
|
|
|
async: 120
|
|
|
|
poll: 3
|
|
|
|
register: gce
|
|
|
|
|
2016-02-10 10:51:39 +00:00
|
|
|
- name: delete gce instances
|
2021-07-12 07:00:47 +00:00
|
|
|
google.cloud.gcp_compute_instance:
|
2019-05-02 21:24:21 +00:00
|
|
|
instance_names: "{{ instance_names }}"
|
2017-03-20 15:20:26 +00:00
|
|
|
image: "{{ cloud_image | default(omit) }}"
|
2016-02-10 10:51:39 +00:00
|
|
|
service_account_email: "{{ gce_service_account_email }}"
|
2019-05-02 21:24:21 +00:00
|
|
|
pem_file: "{{ gce_pem_file | default(omit) }}"
|
|
|
|
credentials_file: "{{ gce_credentials_file | default(omit) }}"
|
2016-02-10 10:51:39 +00:00
|
|
|
project_id: "{{ gce_project_id }}"
|
2019-05-02 21:24:21 +00:00
|
|
|
zone: "{{ cloud_region | default('europe-west1-b') }}"
|
2016-02-10 10:51:39 +00:00
|
|
|
state: 'absent'
|
2017-03-20 15:20:26 +00:00
|
|
|
async: 120
|
|
|
|
poll: 3
|
2016-02-10 10:51:39 +00:00
|
|
|
register: gce
|