pre-flight.yml 281 B

123456789101112131415
  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: tools
  9. - role: check-env
  10. tags: check
  11. - role: fix-operators
  12. tags: fix
  13. - role: fix-labs
  14. tags: labs
  15. ...