config.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ---
  2. - name: Gather facts for node hosts
  3. hosts: nodes
  4. roles:
  5. - openshift_facts
  6. tasks:
  7. # Since the master is registering the nodes before they are configured, we
  8. # need to make sure to set the node properties beforehand if we do not want
  9. # the defaults
  10. - openshift_facts:
  11. role: 'node'
  12. local_facts:
  13. hostname: "{{ openshift_hostname | default(None) }}"
  14. external_id: "{{ openshift_node_external_id | default(None) }}"
  15. resources_cpu: "{{ openshfit_node_resources_cpu | default(None) }}"
  16. resources_memory: "{{ openshfit_node_resources_memory | default(None) }}"
  17. pod_cidr: "{{ openshfit_node_pod_cidr | default(None) }}"
  18. labels: "{{ openshfit_node_labels | default(None) }}"
  19. annotations: "{{ openshfit_node_annotations | default(None) }}"
  20. - name: Register nodes
  21. hosts: masters[0]
  22. vars:
  23. openshift_nodes: "{{ hostvars | oo_select_keys(groups['nodes']) }}"
  24. roles:
  25. - openshift_register_nodes
  26. tasks:
  27. - name: Create local temp directory for syncing certs
  28. local_action: command /usr/bin/mktemp -d /tmp/openshift-ansible-XXXXXXX
  29. register: mktemp
  30. - name: Sync master certs to localhost
  31. synchronize:
  32. mode: pull
  33. checksum: yes
  34. src: /var/lib/openshift/openshift.local.certificates
  35. dest: "{{ mktemp.stdout }}"
  36. - name: Configure node instances
  37. hosts: nodes
  38. vars:
  39. sync_tmpdir: "{{ hostvars[groups['masters'][0]].mktemp.stdout }}"
  40. cert_parent_rel_path: openshift.local.certificates
  41. cert_rel_path: "{{ cert_parent_rel_path }}/node-{{ openshift.common.hostname }}"
  42. cert_base_path: /var/lib/openshift
  43. cert_parent_path: "{{ cert_base_path }}/{{ cert_parent_rel_path }}"
  44. cert_path: "{{ cert_base_path }}/{{ cert_rel_path }}"
  45. openshift_sdn_master_url: http://{{ hostvars[groups['masters'][0]].openshift.common.hostname }}:4001
  46. pre_tasks:
  47. - name: Ensure certificate directories exists
  48. file:
  49. path: "{{ item }}"
  50. state: directory
  51. with_items:
  52. - "{{ cert_path }}"
  53. - "{{ cert_parent_path }}/ca"
  54. # TODO: notify restart openshift-node and/or restart openshift-sdn-node,
  55. # possibly test service started time against certificate/config file
  56. # timestamps in openshift-node or openshift-sdn-node to trigger notify
  57. - name: Sync certs to nodes
  58. synchronize:
  59. checksum: yes
  60. src: "{{ item.src }}"
  61. dest: "{{ item.dest }}"
  62. owner: no
  63. group: no
  64. with_items:
  65. - src: "{{ sync_tmpdir }}/{{ cert_rel_path }}"
  66. dest: "{{ cert_parent_path }}"
  67. - src: "{{ sync_tmpdir }}/{{ cert_parent_rel_path }}/ca/cert.crt"
  68. dest: "{{ cert_parent_path }}/ca/cert.crt"
  69. - local_action: file name={{ sync_tmpdir }} state=absent
  70. run_once: true
  71. roles:
  72. - openshift_node
  73. - openshift_sdn_node