config.yml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. - name: Node Install Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Node install 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_node:
  11. status: "In Progress"
  12. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  13. - import_playbook: disable_excluders.yml
  14. vars:
  15. l_node_group: oo_nodes_to_config:!oo_nodes_to_bootstrap
  16. - import_playbook: certificates.yml
  17. - import_playbook: configure_nodes.yml
  18. vars:
  19. l_node_group: oo_nodes_to_config:!oo_nodes_to_bootstrap
  20. - import_playbook: additional_config.yml
  21. - import_playbook: manage_node.yml
  22. - import_playbook: enable_excluders.yml
  23. vars:
  24. l_node_group: oo_nodes_to_config:!oo_nodes_to_bootstrap
  25. - name: Node Install Checkpoint End
  26. hosts: all
  27. gather_facts: false
  28. tasks:
  29. - name: Set Node install 'Complete'
  30. run_once: true
  31. set_stats:
  32. data:
  33. installer_phase_node:
  34. status: "Complete"
  35. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"