bootstrap.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. - name: Node Bootstrap Preparation Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Node Bootstrap Preparation 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_node_bootstrap:
  11. title: "Node Bootstrap Preparation"
  12. playbook: "playbooks/openshift-node/bootstrap.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - name: Only target nodes that have not yet been bootstrapped
  16. hosts: localhost
  17. tasks:
  18. - add_host:
  19. name: "{{ item }}"
  20. groups: oo_exclude_bootstrapped_nodes
  21. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  22. ansible_become: "{{ g_sudo | default(omit) }}"
  23. with_items: "{{ groups.oo_nodes_to_config | default([]) }}"
  24. changed_when: no
  25. when: hostvars[item].openshift_is_bootstrapped | default(False) | bool
  26. - import_playbook: disable_excluders.yml
  27. vars:
  28. l_node_group: oo_nodes_to_config:!oo_exclude_bootstrapped_nodes
  29. - import_playbook: configure_nodes.yml
  30. vars:
  31. l_node_group: oo_nodes_to_config:!oo_exclude_bootstrapped_nodes
  32. - import_playbook: configure_bootstrap.yml
  33. - import_playbook: enable_excluders.yml
  34. vars:
  35. l_node_group: oo_nodes_to_config:!oo_exclude_bootstrapped_nodes
  36. - name: Node Bootstrap Preparation Checkpoint End
  37. hosts: all
  38. gather_facts: false
  39. tasks:
  40. - name: Set Node Bootstrap Preparation 'Complete'
  41. run_once: true
  42. set_stats:
  43. data:
  44. installer_phase_node_bootstrap:
  45. status: "Complete"
  46. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"