pre-flight.yml 391 B

123456789101112131415161718
  1. ---
  2. - name: Pre-flight checks only.
  3. hosts: workstation.lab.example.com
  4. gather_subset: min
  5. become: no
  6. roles:
  7. - role: pull-tools
  8. tags: prep
  9. - role: pull-images
  10. tags: prep
  11. - role: pull-files
  12. tags: prep
  13. # TODO: download EAP, extract, patch, and remove from Downloads
  14. - role: check-env
  15. tags: check
  16. - role: fix-operators
  17. tags: fix
  18. ...