config.yml 663 B

12345678910111213141516171819202122232425262728293031323334
  1. ---
  2. - name: Node Install Checkpoint Start
  3. hosts: oo_all_hosts
  4. gather_facts: false
  5. tasks:
  6. - name: Set Node install 'In Progress'
  7. set_stats:
  8. data:
  9. installer_phase_node: "In Progress"
  10. aggregate: false
  11. - include: certificates.yml
  12. - include: setup.yml
  13. - include: containerized_nodes.yml
  14. - include: configure_nodes.yml
  15. - include: additional_config.yml
  16. - include: manage_node.yml
  17. - include: enable_excluders.yml
  18. - name: Node Install Checkpoint End
  19. hosts: oo_all_hosts
  20. gather_facts: false
  21. tasks:
  22. - name: Set Node install 'Complete'
  23. set_stats:
  24. data:
  25. installer_phase_node: "Complete"
  26. aggregate: false