std_include.yml 883 B

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