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
|
2016-02-10 10:51:39 +00:00
|
|
|
|
|
|
|
tasks:
|
|
|
|
- name: replace_test_id
|
|
|
|
set_fact:
|
|
|
|
test_name: "{{test_id |regex_replace('\\.', '-')}}"
|
|
|
|
|
2016-12-14 16:00:38 +00:00
|
|
|
- set_fact:
|
|
|
|
instance_names: >-
|
2017-02-13 11:13:28 +00:00
|
|
|
{%- if mode in ['separate', 'separate-scale', 'ha', 'ha-scale'] -%}
|
2016-12-14 16:00:38 +00:00
|
|
|
k8s-{{test_name}}-1,k8s-{{test_name}}-2,k8s-{{test_name}}-3
|
|
|
|
{%- else -%}
|
|
|
|
k8s-{{test_name}}-1,k8s-{{test_name}}-2
|
|
|
|
{%- endif -%}
|
|
|
|
|
2016-02-10 10:51:39 +00:00
|
|
|
- name: Create gce instances
|
|
|
|
gce:
|
2016-12-14 16:00:38 +00:00
|
|
|
instance_names: "{{instance_names}}"
|
2016-02-10 10:51:39 +00:00
|
|
|
machine_type: "{{ cloud_machine_type }}"
|
|
|
|
image: "{{ cloud_image }}"
|
2017-01-05 16:08:57 +00:00
|
|
|
preemptible: no
|
2016-02-10 10:51:39 +00:00
|
|
|
service_account_email: "{{ gce_service_account_email }}"
|
2016-12-13 22:01:37 +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 }}"
|
|
|
|
zone: "{{cloud_region}}"
|
2017-06-26 18:24:52 +00:00
|
|
|
metadata: '{"test_id": "{{test_id}}", "network": "{{kube_network_plugin}}", "startup-script": "{{startup_script}}"}'
|
2016-02-10 10:51:39 +00:00
|
|
|
tags: "build-{{test_name}},{{kube_network_plugin}}"
|
|
|
|
register: gce
|
|
|
|
|
|
|
|
- name: Template the inventory
|
|
|
|
template:
|
|
|
|
src: ../templates/inventory-gce.j2
|
|
|
|
dest: "{{ inventory_path }}"
|
|
|
|
|
2017-02-13 11:13:28 +00:00
|
|
|
- name: Make group_vars directory
|
|
|
|
file:
|
|
|
|
path: "{{ inventory_path|dirname }}/group_vars"
|
|
|
|
state: directory
|
|
|
|
when: mode in ['scale', 'separate-scale', 'ha-scale']
|
|
|
|
|
|
|
|
- name: Template fake hosts group vars
|
|
|
|
template:
|
|
|
|
src: ../templates/fake_hosts.yml.j2
|
|
|
|
dest: "{{ inventory_path|dirname }}/group_vars/fake_hosts.yml"
|
|
|
|
when: mode in ['scale', 'separate-scale', 'ha-scale']
|
|
|
|
|
2016-02-10 10:51:39 +00:00
|
|
|
- name: Wait for SSH to come up
|
2017-06-26 18:24:52 +00:00
|
|
|
wait_for: host={{item.public_ip}} port=22 delay=30 timeout=180 state=started
|
2016-05-11 15:37:15 +00:00
|
|
|
with_items: "{{gce.instance_data}}"
|