Improve method to create and wait for gce instances (#1645)

This commit is contained in:
Matthew Mosesohn 2017-09-09 23:41:31 +03:00 committed by GitHub
parent 5d99fa0940
commit 0f231f0e76
2 changed files with 12 additions and 4 deletions

View file

@ -34,6 +34,10 @@
tags: "build-{{test_name}},{{kube_network_plugin}}"
register: gce
- name: Add instances to host group
add_host: hostname={{item.name}} ansible_host={{item.public_ip}} groupname="waitfor_hosts"
with_items: '{{gce.instance_data}}'
- name: Template the inventory
template:
src: ../templates/inventory-gce.j2
@ -51,6 +55,10 @@
dest: "{{ inventory_path|dirname }}/group_vars/fake_hosts.yml"
when: mode in ['scale', 'separate-scale', 'ha-scale']
- name: Wait for SSH to come up
wait_for: host={{item.public_ip}} port=22 delay=30 timeout=180 state=started
with_items: "{{gce.instance_data}}"
- name: Wait for instances
hosts: "waitfor_hosts"
gather_facts: false
tasks:
- name: Wait for SSH to come up.
local_action: wait_for host={{inventory_hostname}} port=22 delay=5 timeout=240 state=started

View file

@ -6,6 +6,6 @@
uri:
url: "https://{{ access_ip | default(ansible_default_ipv4.address) }}:{{ kube_apiserver_port }}/api/v1"
user: kube
password: "{{ lookup('password', '../../credentials/kube_user length=15') }}"
password: "{{ lookup('password', '../../credentials/kube_user length=15 chars=ascii_letters,digits') }}"
validate_certs: no
status_code: 200