join.yml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. ---
  2. - name: Evaluate bootstrapped nodes
  3. hosts: localhost
  4. gather_facts: no
  5. connection: local
  6. tasks:
  7. - name: Add all nodes that are bootstrapped
  8. add_host:
  9. name: "{{ item }}"
  10. groups: oo_nodes_to_bootstrap
  11. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  12. ansible_become: "{{ g_sudo | default(omit) }}"
  13. with_items: "{{ groups.oo_nodes_to_config | default([]) }}"
  14. when:
  15. - hostvars[item].openshift is defined
  16. - hostvars[item].openshift.common is defined
  17. - (hostvars[item].openshift_is_bootstrapped | bool) or (hostvars[item].openshift_node_bootstrap | default(True) | bool)
  18. changed_when: False
  19. - name: Distribute bootstrap and start nodes
  20. hosts: oo_nodes_to_bootstrap
  21. gather_facts: no
  22. tasks:
  23. - import_role:
  24. name: openshift_node
  25. tasks_from: distribute_bootstrap.yml
  26. - name: Approve any pending CSR requests from inventory nodes
  27. hosts: oo_first_master
  28. gather_facts: no
  29. tasks:
  30. - name: Dump all candidate bootstrap hostnames
  31. debug:
  32. msg: "{{ groups['oo_nodes_to_bootstrap'] | default([]) }}"
  33. - name: Find all hostnames for bootstrapping
  34. set_fact:
  35. l_nodes_to_join: "{{ groups['oo_nodes_to_bootstrap'] | default([]) | map('extract', hostvars) | map(attribute='openshift.node.nodename') | list }}"
  36. - name: Dump the bootstrap hostnames
  37. debug:
  38. msg: "{{ l_nodes_to_join }}"
  39. - name: Approve bootstrap nodes
  40. oc_adm_csr:
  41. nodes: "{{ l_nodes_to_join }}"
  42. timeout: 60
  43. fail_on_timeout: true
  44. register: approve_out
  45. ignore_errors: true
  46. when:
  47. - l_nodes_to_join|length > 0
  48. - when: not approve_out|succeeded
  49. block:
  50. - name: Get CSRs
  51. command: >
  52. {{ openshift_client_binary }} describe csr --config=/etc/origin/master/admin.kubeconfig
  53. - name: Report approval errors
  54. fail:
  55. msg: Node approval failed
  56. - name: Ensure any inventory labels are applied to the nodes
  57. hosts: oo_nodes_to_bootstrap
  58. vars:
  59. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  60. roles:
  61. - role: openshift_manage_node
  62. openshift_master_host: "{{ groups.oo_first_master.0 }}"
  63. openshift_manage_node_is_master: "{{ ('oo_masters_to_config' in group_names) | bool }}"