std_include.yml 983 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ---
  2. - name: Initialization Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. roles:
  6. - installer_checkpoint
  7. tasks:
  8. - name: Set install initialization 'In Progress'
  9. run_once: true
  10. set_stats:
  11. data:
  12. installer_phase_initialize:
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - include: evaluate_groups.yml
  16. tags:
  17. - always
  18. - include: initialize_facts.yml
  19. tags:
  20. - always
  21. - include: sanity_checks.yml
  22. tags:
  23. - always
  24. - include: validate_hostnames.yml
  25. tags:
  26. - node
  27. - include: initialize_openshift_repos.yml
  28. tags:
  29. - always
  30. - include: initialize_openshift_version.yml
  31. tags:
  32. - always
  33. - name: Initialization Checkpoint End
  34. hosts: all
  35. gather_facts: false
  36. tasks:
  37. - name: Set install initialization 'Complete'
  38. run_once: true
  39. set_stats:
  40. data:
  41. installer_phase_initialize:
  42. status: "Complete"
  43. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"