pre-flight.yml 381 B

12345678910111213141516171819
  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: check-env
  10. tags: check
  11. - role: fix-operators
  12. tags: fix
  13. - name: Class DNS changes on bastion.
  14. hosts: bastion.lab.example.com
  15. gather_subset: min
  16. roles:
  17. - role: add-hosts
  18. tags: fix
  19. ...