Files
offline_kubespray/tests/cloud_playbooks/wait-for-ssh.yml
2024-02-16 17:08:09 +09:00

14 lines
247 B
YAML

---
- name: Wait until SSH is available
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