ad68b23d8a
* Reduce default testcase to 2 nodes, add HA case. * Adjust gen_matrix script for Travis/Gitlab CIs. * Enable netchecker deploy foro gitlab CI. * Sync other things from travis matrix and reorder them as build steps for pull requests, master branch, auto/manual. * Do auto-step1 from part1 and manual step2,3 for branches/PRs. * Do manual steps from part2, special for master merges. Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
---
|
|
- hosts: localhost
|
|
become: false
|
|
gather_facts: no
|
|
vars:
|
|
cloud_machine_type: f1-micro
|
|
mode: default
|
|
|
|
tasks:
|
|
- name: replace_test_id
|
|
set_fact:
|
|
test_name: "{{test_id |regex_replace('\\.', '-')}}"
|
|
|
|
- set_fact:
|
|
instance_names: >-
|
|
{%- if mode in ['separate', 'ha'] -%}
|
|
k8s-{{test_name}}-1,k8s-{{test_name}}-2,k8s-{{test_name}}-3
|
|
{%- else -%}
|
|
k8s-{{test_name}}-1,k8s-{{test_name}}-2
|
|
{%- endif -%}
|
|
|
|
- name: delete gce instances
|
|
gce:
|
|
instance_names: "{{instance_names}}"
|
|
machine_type: "{{ cloud_machine_type }}"
|
|
image: "{{ cloud_image }}"
|
|
service_account_email: "{{ gce_service_account_email }}"
|
|
pem_file: "{{ gce_pem_file | default(omit)}}"
|
|
credentials_file: "{{gce_credentials_file | default(omit)}}"
|
|
project_id: "{{ gce_project_id }}"
|
|
zone: "{{cloud_region | default('europe-west1-b')}}"
|
|
metadata: '{"test_id": "{{test_id}}", "network": "{{kube_network_plugin}}"}'
|
|
state: 'absent'
|
|
register: gce
|