Files
offline_kubespray/kubespray/tests/cloud_playbooks/wait-for-ssh.yml
ByeonJungHun 360c6eef4a offline 작업
2024-02-19 16:02:29 +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