Improve method to create and wait for gce instances (#1645)
This commit is contained in:
parent
5d99fa0940
commit
0f231f0e76
2 changed files with 12 additions and 4 deletions
|
@ -34,6 +34,10 @@
|
||||||
tags: "build-{{test_name}},{{kube_network_plugin}}"
|
tags: "build-{{test_name}},{{kube_network_plugin}}"
|
||||||
register: gce
|
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
|
- name: Template the inventory
|
||||||
template:
|
template:
|
||||||
src: ../templates/inventory-gce.j2
|
src: ../templates/inventory-gce.j2
|
||||||
|
@ -51,6 +55,10 @@
|
||||||
dest: "{{ inventory_path|dirname }}/group_vars/fake_hosts.yml"
|
dest: "{{ inventory_path|dirname }}/group_vars/fake_hosts.yml"
|
||||||
when: mode in ['scale', 'separate-scale', 'ha-scale']
|
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
|
- name: Wait for instances
|
||||||
with_items: "{{gce.instance_data}}"
|
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
|
||||||
|
|
|
@ -6,6 +6,6 @@
|
||||||
uri:
|
uri:
|
||||||
url: "https://{{ access_ip | default(ansible_default_ipv4.address) }}:{{ kube_apiserver_port }}/api/v1"
|
url: "https://{{ access_ip | default(ansible_default_ipv4.address) }}:{{ kube_apiserver_port }}/api/v1"
|
||||||
user: kube
|
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
|
validate_certs: no
|
||||||
status_code: 200
|
status_code: 200
|
||||||
|
|
Loading…
Reference in a new issue