123456789101112131415161718 |
- ---
- - name: Pre-flight checks only.
- hosts: workstation.lab.example.com
- gather_subset: min
- become: no
- roles:
- - role: pull-tools
- tags: prep
- - role: pull-images
- tags: prep
- - role: pull-files
- tags: prep
- # TODO: patch EAP?
- - role: check-env
- tags: check
- - role: fix-operators
- tags: fix
- ...
|