Files
dsk-iac/01-old/kubespray/tests/cloud_playbooks/wait-for-ssh.yml
dsk-minchulahn 0273450ff6 Clean Code
2023-12-19 13:03:29 +09:00

13 lines
211 B
YAML

---
- hosts: all
become: False
gather_facts: False
tasks:
- name: Wait until SSH is available
wait_for:
host: "{{ ansible_host }}"
port: 22
timeout: 240
delegate_to: localhost