You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 6, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: molecule_vmware/cookiecutter/{{cookiecutter.molecule_directory}}/{{cookiecutter.scenario_name}}/create_linux_instance.yml
+16-3Lines changed: 16 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -28,9 +28,20 @@
28
28
wait_for_ip_address: true
29
29
wait_for_customization: true
30
30
state: poweredon
31
-
register: server
31
+
async: 7200
32
+
poll: 0
33
+
register: async_results
32
34
loop: "{{ molecule_yml.platforms }}"
33
35
36
+
- name: Check the test instance creation status
37
+
async_status:
38
+
jid: "{{ item.ansible_job_id }}"
39
+
loop: "{{ async_results.results }}"
40
+
register: server
41
+
until: server.finished
42
+
delay: 10
43
+
retries: 300
44
+
34
45
- name: Create ssh directory and public key in guest OS
Copy file name to clipboardExpand all lines: molecule_vmware/cookiecutter/{{cookiecutter.molecule_directory}}/{{cookiecutter.scenario_name}}/create_windows_instance.yml
0 commit comments