std_include.yml 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ---
  2. - name: Initialization Checkpoint Start
  3. hosts: oo_all_hosts
  4. gather_facts: false
  5. roles:
  6. - installer_checkpoint
  7. tasks:
  8. - name: Set install initialization 'In Progress'
  9. set_stats:
  10. data:
  11. installer_phase_initialize: "In Progress"
  12. aggregate: false
  13. - include: evaluate_groups.yml
  14. tags:
  15. - always
  16. - include: initialize_facts.yml
  17. tags:
  18. - always
  19. - include: sanity_checks.yml
  20. tags:
  21. - always
  22. - include: validate_hostnames.yml
  23. tags:
  24. - node
  25. - include: initialize_openshift_repos.yml
  26. tags:
  27. - always
  28. - include: initialize_openshift_version.yml
  29. tags:
  30. - always
  31. - name: Initialization Checkpoint End
  32. hosts: oo_all_hosts
  33. gather_facts: false
  34. tasks:
  35. - name: Set install initialization 'Complete'
  36. set_stats:
  37. data:
  38. installer_phase_initialize: "Complete"
  39. aggregate: false