mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
* project: fix ansible-lint name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: ignore jinja template error in names Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: capitalize ansible name Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> * project: update notify after name capitalization Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch> --------- Signed-off-by: Arthur Outhenin-Chalandre <arthur.outhenin-chalandre@proton.ch>
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
|