c12s-kubespray/tests/cloud_playbooks/create-gce.yml

45 lines
1.4 KiB
YAML
Raw Normal View History

2016-02-10 10:51:39 +00:00
---
- hosts: localhost
become: false
2016-02-10 10:51:39 +00:00
gather_facts: no
vars:
2016-12-21 09:59:20 +00:00
cloud_machine_type: n1-standard-1
mode: default
2016-02-10 10:51:39 +00:00
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 -%}
2016-02-10 10:51:39 +00:00
- name: Create gce instances
gce:
instance_names: "{{instance_names}}"
2016-02-10 10:51:39 +00:00
machine_type: "{{ cloud_machine_type }}"
image: "{{ cloud_image }}"
2016-12-21 08:27:21 +00:00
preemptible: yes
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}}"
metadata: '{"test_id": "{{test_id}}", "network": "{{kube_network_plugin}}"}'
tags: "build-{{test_name}},{{kube_network_plugin}}"
register: gce
- name: Template the inventory
template:
src: ../templates/inventory-gce.j2
dest: "{{ inventory_path }}"
- name: Wait for SSH to come up
wait_for: host={{item.public_ip}} port=22 delay=10 timeout=180 state=started
with_items: "{{gce.instance_data}}"