join.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. - name: Distribute bootstrap and start nodes
  3. hosts: oo_nodes_to_bootstrap
  4. gather_facts: no
  5. tasks:
  6. - import_role:
  7. name: openshift_node
  8. tasks_from: distribute_bootstrap.yml
  9. - name: Approve any pending CSR requests from inventory nodes
  10. hosts: oo_first_master
  11. gather_facts: no
  12. tasks:
  13. - name: Dump all candidate bootstrap hostnames
  14. debug:
  15. msg: "{{ groups['oo_nodes_to_bootstrap'] | default([]) }}"
  16. - name: Find all hostnames for bootstrapping
  17. set_fact:
  18. l_nodes_to_join: "{{ groups['oo_nodes_to_bootstrap'] | default([]) | map('extract', hostvars) | map(attribute='openshift.node.nodename') | list }}"
  19. - name: Dump the bootstrap hostnames
  20. debug:
  21. msg: "{{ l_nodes_to_join }}"
  22. - name: Approve bootstrap nodes
  23. oc_adm_csr:
  24. nodes: "{{ l_nodes_to_join }}"
  25. timeout: 60
  26. fail_on_timeout: true
  27. register: approve_out
  28. ignore_errors: true
  29. when:
  30. - l_nodes_to_join|length > 0
  31. - when: approve_out is failed
  32. block:
  33. - name: Get CSRs
  34. command: >
  35. {{ openshift_client_binary }} describe csr --config={{ openshift.common.config_base }}/master/admin.kubeconfig
  36. - name: Report approval errors
  37. fail:
  38. msg: Node approval failed
  39. - name: Ensure any inventory labels are applied to the nodes
  40. hosts: oo_nodes_to_bootstrap
  41. vars:
  42. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  43. roles:
  44. - role: openshift_manage_node
  45. openshift_master_host: "{{ groups.oo_first_master.0 }}"
  46. openshift_manage_node_is_master: "{{ ('oo_masters_to_config' in group_names) | bool }}"