join.yml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ---
  2. - name: Node Join Checkpoint Start
  3. hosts: all
  4. gather_facts: false
  5. tasks:
  6. - name: Set Node Join 'In Progress'
  7. run_once: true
  8. set_stats:
  9. data:
  10. installer_phase_node_join:
  11. title: "Node Join"
  12. playbook: "playbooks/openshift-node/join.yml"
  13. status: "In Progress"
  14. start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
  15. - name: Distribute bootstrap and start nodes
  16. hosts: oo_nodes_to_config
  17. gather_facts: no
  18. tasks:
  19. - import_role:
  20. name: openshift_node
  21. tasks_from: distribute_bootstrap.yml
  22. - name: Approve any pending CSR requests from inventory nodes
  23. hosts: oo_first_master
  24. gather_facts: no
  25. tasks:
  26. - name: Dump all candidate bootstrap hostnames
  27. debug:
  28. msg: "{{ groups['oo_nodes_to_config'] | default([]) }}"
  29. - name: Find all hostnames for bootstrapping
  30. set_fact:
  31. l_nodes_to_join: "{{ groups['oo_nodes_to_config'] | default([]) | map('extract', hostvars) | map(attribute='openshift.node.nodename') | list }}"
  32. - name: Dump the bootstrap hostnames
  33. debug:
  34. msg: "{{ l_nodes_to_join }}"
  35. - name: Approve bootstrap nodes
  36. oc_adm_csr:
  37. nodes: "{{ l_nodes_to_join }}"
  38. timeout: 60
  39. fail_on_timeout: true
  40. register: approve_out
  41. ignore_errors: true
  42. when:
  43. - l_nodes_to_join|length > 0
  44. - when: approve_out is failed
  45. block:
  46. - name: Get CSRs
  47. command: >
  48. {{ openshift_client_binary }} describe csr --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  49. - name: Report approval errors
  50. fail:
  51. msg: Node approval failed
  52. - name: Ensure any inventory labels are applied to the nodes
  53. hosts: oo_nodes_to_config
  54. vars:
  55. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  56. roles:
  57. - role: openshift_manage_node
  58. openshift_master_host: "{{ groups.oo_first_master.0 }}"
  59. openshift_manage_node_is_master: "{{ ('oo_masters_to_config' in group_names) | bool }}"
  60. - name: Node Join Checkpoint End
  61. hosts: all
  62. gather_facts: false
  63. tasks:
  64. - name: Set Node Join 'Complete'
  65. run_once: true
  66. set_stats:
  67. data:
  68. installer_phase_node_join:
  69. status: "Complete"
  70. end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"