check.yml 579 B

12345678910111213141516171819202122232425262728293031
  1. ---
  2. - hosts: OSEv3
  3. roles:
  4. - openshift_preflight/init
  5. - hosts: OSEv3
  6. name: checks that apply to all hosts
  7. gather_facts: no
  8. ignore_errors: yes
  9. roles:
  10. - openshift_preflight/common
  11. - hosts: masters
  12. name: checks that apply to masters
  13. gather_facts: no
  14. ignore_errors: yes
  15. roles:
  16. - openshift_preflight/masters
  17. - hosts: nodes
  18. name: checks that apply to nodes
  19. gather_facts: no
  20. ignore_errors: yes
  21. roles:
  22. - openshift_preflight/nodes
  23. - hosts: OSEv3
  24. name: verify check results
  25. gather_facts: no
  26. roles:
  27. - openshift_preflight/verify_status