1
0
Fork 0
mirror of https://github.com/kasmtech/ansible.git synced 2026-07-17 16:46:36 +00:00

adding a wait to make sure that the instance is online

This commit is contained in:
Huan Truong 2025-07-11 17:31:10 -05:00
parent 78e3a803b2
commit 3390cfa993
No known key found for this signature in database

View file

@ -4,6 +4,11 @@
host: "{{ db_ip }}"
timeout: 60
- name: Wait for instance to come back
wait_for_connection:
delay: 10
timeout: 300
- name: Install web role
command: "bash {{ tempdir.path }}/kasm_release/install.sh -S app -e -L {{ proxy_port }} -q {{ db_ip }} -Q {{ database_password }} -n {{ target_ip }} {{ '-s ' ~ service_images_copy.dest if service_images_file }} {{ '-w ' ~ workspace_images_copy.dest if workspace_images_file }}"
register: install_output