mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2026-01-11 10:00:03 -03:30
14 lines
247 B
YAML
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
|