bootstrap.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. ---
  2. - name: Node Preparation Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Node preparation '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: setup_bootstrap.yml
  14. - import_playbook: configure_nodes.yml
  15. - name: node bootstrap config
  16. hosts: oo_nodes_to_config:!oo_exclude_nodes_to_config
  17. tasks:
  18. - import_role:
  19. name: openshift_node
  20. tasks_from: bootstrap.yml
  21. - import_role:
  22. name: openshift_node_group
  23. tasks_from: bootstrap.yml
  24. - set_fact:
  25. openshift_is_bootstrapped: True
  26. - import_playbook: enable_excluders.yml
  27. - import_playbook: clean_image.yml
  28. - name: Node Preparation Checkpoint End
  29. hosts: all
  30. gather_facts: false
  31. tasks:
  32. - name: Set Node preparation 'Complete'
  33. run_once: true
  34. set_stats:
  35. data:
  36. installer_phase_node:
  37. status: "Complete"
  38. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"