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-27 12:16:34 +00:00
|
|
|
cloud_machine_type: g1-small
|
2016-12-14 16:00:38 +00:00
|
|
|
mode: default
|
2017-10-05 15:52:28 +00:00
|
|
|
preemptible: no
|
2017-10-18 16:28:54 +00:00
|
|
|
ci_job_name: "{{ lookup('env', 'CI_JOB_NAME') }}"
|
2018-02-12 11:38:06 +00:00
|
|
|
delete_group_vars: no
|
2016-02-10 10:51:39 +00:00
|
|
|
tasks:
|
2017-10-20 07:26:42 +00:00
|
|
|
- name: include vars for test {{ ci_job_name }}
|
2017-10-18 16:28:54 +00:00
|
|
|
include_vars: "../files/{{ ci_job_name }}.yml"
|
|
|
|
|
2016-02-10 10:51:39 +00:00
|
|
|
- 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: >-
|
2017-02-13 11:13:28 +00:00
|
|
|
{%- if mode in ['separate', 'separate-scale', 'ha', 'ha-scale'] -%}
|
2019-05-02 21:24:21 +00:00
|
|
|
k8s-{{ test_name }}-1,k8s-{{ test_name }}-2,k8s-{{ test_name }}-3
|
2017-09-15 21:28:37 +00:00
|
|
|
{%- elif mode == 'aio' -%}
|
2019-05-02 21:24:21 +00:00
|
|
|
k8s-{{ test_name }}-1
|
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 -%}
|
|
|
|
|
2016-02-10 10:51:39 +00:00
|
|
|
- name: Create 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 }}"
|
2016-02-10 10:51:39 +00:00
|
|
|
machine_type: "{{ cloud_machine_type }}"
|
2017-10-25 10:45:54 +00:00
|
|
|
image: "{{ cloud_image | default(omit) }}"
|
|
|
|
image_family: "{{ cloud_image_family | default(omit) }}"
|
2017-10-05 15:52:28 +00:00
|
|
|
preemptible: "{{ preemptible }}"
|
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 }}"
|
|
|
|
metadata: '{"test_id": "{{ test_id }}", "network": "{{ kube_network_plugin }}", "startup-script": "{{ startup_script|default("") }}"}'
|
|
|
|
tags: "build-{{ test_name }},{{ kube_network_plugin }}"
|
2017-10-05 15:52:28 +00:00
|
|
|
ip_forward: yes
|
|
|
|
service_account_permissions: ['compute-rw']
|
2016-02-10 10:51:39 +00:00
|
|
|
register: gce
|
|
|
|
|
2017-09-09 20:41:31 +00:00
|
|
|
- name: Add instances to host group
|
2019-05-02 21:24:21 +00:00
|
|
|
add_host: hostname={{ item.public_ip }} groupname="waitfor_hosts"
|
|
|
|
with_items: '{{ gce.instance_data }}'
|
2017-09-09 20:41:31 +00:00
|
|
|
|
2020-07-28 08:21:08 +00:00
|
|
|
- name: Template the inventory # noqa 404 CI inventory templates are not in role_path
|
2016-02-10 10:51:39 +00:00
|
|
|
template:
|
|
|
|
src: ../templates/inventory-gce.j2
|
|
|
|
dest: "{{ inventory_path }}"
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0644
|
2016-02-10 10:51:39 +00:00
|
|
|
|
2017-02-13 11:13:28 +00:00
|
|
|
- name: Make group_vars directory
|
|
|
|
file:
|
|
|
|
path: "{{ inventory_path|dirname }}/group_vars"
|
|
|
|
state: directory
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0755
|
2017-02-13 11:13:28 +00:00
|
|
|
when: mode in ['scale', 'separate-scale', 'ha-scale']
|
|
|
|
|
2020-07-28 08:21:08 +00:00
|
|
|
- name: Template fake hosts group vars # noqa 404 CI templates are not in role_path
|
2017-02-13 11:13:28 +00:00
|
|
|
template:
|
|
|
|
src: ../templates/fake_hosts.yml.j2
|
|
|
|
dest: "{{ inventory_path|dirname }}/group_vars/fake_hosts.yml"
|
2021-07-12 07:00:47 +00:00
|
|
|
mode: 0644
|
2017-02-13 11:13:28 +00:00
|
|
|
when: mode in ['scale', 'separate-scale', 'ha-scale']
|
|
|
|
|
2018-02-12 11:38:06 +00:00
|
|
|
- name: Delete group_vars directory
|
|
|
|
file:
|
|
|
|
path: "{{ inventory_path|dirname }}/group_vars"
|
|
|
|
state: absent
|
|
|
|
recurse: yes
|
|
|
|
when: delete_group_vars
|