ansible-role-cloudinit-wait/README.md

14 lines
265 B
Markdown
Raw Permalink Normal View History

2023-04-14 09:01:56 +00:00
# ansible-role-cloudinit-wait
Ansible role to wait for a cloud-init bootstrapped host to initialize.
Disable fact gathering before calling this role:
2023-04-17 17:51:39 +00:00
```yaml
2023-04-14 09:01:56 +00:00
- name: Wait for servers to come up
hosts: ...
gather_facts: no
roles:
- 'cloudinit-wait'
```