config.yml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266
  1. ---
  2. - name: Gather and set facts for node hosts
  3. hosts: oo_nodes_to_config
  4. roles:
  5. - openshift_facts
  6. tasks:
  7. # Since the master is generating the node certificates before they are
  8. # configured, we need to make sure to set the node properties beforehand if
  9. # we do not want the defaults
  10. - openshift_facts:
  11. role: "{{ item.role }}"
  12. local_facts: "{{ item.local_facts }}"
  13. with_items:
  14. - role: common
  15. local_facts:
  16. hostname: "{{ openshift_hostname | default(None) }}"
  17. public_hostname: "{{ openshift_public_hostname | default(None) }}"
  18. deployment_type: "{{ openshift_deployment_type }}"
  19. use_flannel: "{{ openshift_use_flannel | default(None) }}"
  20. - role: node
  21. local_facts:
  22. labels: "{{ openshift_node_labels | default(None) }}"
  23. annotations: "{{ openshift_node_annotations | default(None) }}"
  24. schedulable: "{{ openshift_schedulable | default(openshift_scheduleable) | default(None) }}"
  25. - name: Check status of node certificates
  26. stat:
  27. path: "{{ openshift.common.config_base }}/node/{{ item }}"
  28. with_items:
  29. - "system:node:{{ openshift.common.hostname }}.crt"
  30. - "system:node:{{ openshift.common.hostname }}.key"
  31. - "system:node:{{ openshift.common.hostname }}.kubeconfig"
  32. - ca.crt
  33. - server.key
  34. - server.crt
  35. register: stat_result
  36. - set_fact:
  37. certs_missing: "{{ stat_result.results | oo_collect(attribute='stat.exists')
  38. | list | intersect([false])}}"
  39. node_subdir: node-{{ openshift.common.hostname }}
  40. config_dir: "{{ openshift.common.config_base }}/generated-configs/node-{{ openshift.common.hostname }}"
  41. node_cert_dir: "{{ openshift.common.config_base }}/node"
  42. - name: Check status of flannel external etcd certificates
  43. stat:
  44. path: "{{ openshift.common.config_base }}/node/{{ item }}"
  45. with_items:
  46. - node.etcd-client.crt
  47. - node.etcd-ca.crt
  48. register: g_external_etcd_flannel_cert_stat_result
  49. when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config and (openshift.common.use_flannel | bool)
  50. - set_fact:
  51. etcd_client_flannel_certs_missing: "{{ g_external_etcd_flannel_cert_stat_result.results
  52. | oo_collect(attribute='stat.exists')
  53. | list | intersect([false])}}"
  54. etcd_cert_subdir: openshift-node-{{ openshift.common.hostname }}
  55. etcd_cert_config_dir: "{{ openshift.common.config_base }}/node"
  56. etcd_cert_prefix: node.etcd-
  57. when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config and (openshift.common.use_flannel | bool)
  58. - name: Create temp directory for syncing certs
  59. hosts: localhost
  60. connection: local
  61. become: no
  62. gather_facts: no
  63. tasks:
  64. - name: Create local temp directory for syncing certs
  65. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  66. register: mktemp
  67. changed_when: False
  68. - name: Configure flannel etcd certificates
  69. hosts: oo_first_etcd
  70. vars:
  71. etcd_generated_certs_dir: /etc/etcd/generated_certs
  72. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  73. pre_tasks:
  74. - set_fact:
  75. etcd_needing_client_certs: "{{ hostvars
  76. | oo_select_keys(groups['oo_nodes_to_config'])
  77. | oo_filter_list(filter_attr='etcd_client_flannel_certs_missing') | default([]) }}"
  78. when: etcd_client_flannel_certs_missing is defined and etcd_client_flannel_certs_missing
  79. roles:
  80. - role: etcd_certificates
  81. when: openshift_use_flannel | default(false) | bool
  82. post_tasks:
  83. - name: Create a tarball of the etcd flannel certs
  84. command: >
  85. tar -czvf {{ etcd_generated_certs_dir }}/{{ item.etcd_cert_subdir }}.tgz
  86. -C {{ etcd_generated_certs_dir }}/{{ item.etcd_cert_subdir }} .
  87. args:
  88. creates: "{{ etcd_generated_certs_dir }}/{{ item.etcd_cert_subdir }}.tgz"
  89. with_items: etcd_needing_client_certs
  90. when: etcd_client_flannel_certs_missing is defined and etcd_client_flannel_certs_missing
  91. - name: Retrieve the etcd cert tarballs
  92. fetch:
  93. src: "{{ etcd_generated_certs_dir }}/{{ item.etcd_cert_subdir }}.tgz"
  94. dest: "{{ sync_tmpdir }}/"
  95. flat: yes
  96. fail_on_missing: yes
  97. validate_checksum: yes
  98. with_items: etcd_needing_client_certs
  99. when: etcd_client_flannel_certs_missing is defined and etcd_client_flannel_certs_missing
  100. - name: Copy the external etcd flannel certs to the nodes
  101. hosts: oo_nodes_to_config
  102. vars:
  103. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  104. tasks:
  105. - name: Ensure certificate directory exists
  106. file:
  107. path: "{{ openshift.common.config_base }}/node"
  108. state: directory
  109. when: etcd_client_flannel_certs_missing is defined and etcd_client_flannel_certs_missing
  110. - name: Unarchive the tarball on the master
  111. unarchive:
  112. src: "{{ sync_tmpdir }}/{{ etcd_cert_subdir }}.tgz"
  113. dest: "{{ etcd_cert_config_dir }}"
  114. when: etcd_client_flannel_certs_missing is defined and etcd_client_flannel_certs_missing
  115. - file:
  116. path: "{{ etcd_cert_config_dir }}/{{ item }}"
  117. owner: root
  118. group: root
  119. mode: 0600
  120. with_items:
  121. - node.etcd-client.crt
  122. - node.etcd-client.key
  123. - node.etcd-ca.crt
  124. when: etcd_client_flannel_certs_missing is defined and etcd_client_flannel_certs_missing
  125. - name: Create node certificates
  126. hosts: oo_first_master
  127. vars:
  128. nodes_needing_certs: "{{ hostvars
  129. | oo_select_keys(groups['oo_nodes_to_config']
  130. | default([]))
  131. | oo_filter_list(filter_attr='certs_missing') }}"
  132. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  133. roles:
  134. - openshift_node_certificates
  135. post_tasks:
  136. - name: Create a tarball of the node config directories
  137. command: >
  138. tar -czvf {{ item.config_dir }}.tgz
  139. --transform 's|system:{{ item.node_subdir }}|node|'
  140. -C {{ item.config_dir }} .
  141. args:
  142. creates: "{{ item.config_dir }}.tgz"
  143. with_items: nodes_needing_certs
  144. - name: Retrieve the node config tarballs from the master
  145. fetch:
  146. src: "{{ item.config_dir }}.tgz"
  147. dest: "{{ sync_tmpdir }}/"
  148. flat: yes
  149. fail_on_missing: yes
  150. validate_checksum: yes
  151. with_items: nodes_needing_certs
  152. - name: Deploy node certificates
  153. hosts: oo_nodes_to_config
  154. vars:
  155. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  156. tasks:
  157. - name: Ensure certificate directory exists
  158. file:
  159. path: "{{ node_cert_dir }}"
  160. state: directory
  161. # TODO: notify restart node
  162. # possibly test service started time against certificate/config file
  163. # timestamps in node to trigger notify
  164. - name: Unarchive the tarball on the node
  165. unarchive:
  166. src: "{{ sync_tmpdir }}/{{ node_subdir }}.tgz"
  167. dest: "{{ node_cert_dir }}"
  168. when: certs_missing
  169. - name: Evaluate node groups
  170. hosts: localhost
  171. become: no
  172. tasks:
  173. - name: Evaluate oo_containerized_master_nodes
  174. add_host:
  175. name: "{{ item }}"
  176. groups: oo_containerized_master_nodes
  177. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  178. ansible_sudo: "{{ g_sudo | default(omit) }}"
  179. with_items: "{{ groups.oo_nodes_to_config | default([]) }}"
  180. when: hostvars[item].openshift.common.is_containerized | bool and (item in groups.oo_nodes_to_config and item in groups.oo_masters_to_config)
  181. - name: Configure node instances
  182. hosts: oo_containerized_master_nodes
  183. serial: 1
  184. vars:
  185. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  186. openshift_node_first_master_ip: "{{ hostvars[groups.oo_first_master.0].openshift.common.ip }}"
  187. roles:
  188. - openshift_node
  189. - name: Configure node instances
  190. hosts: oo_nodes_to_config:!oo_containerized_master_nodes
  191. vars:
  192. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  193. openshift_node_first_master_ip: "{{ hostvars[groups.oo_first_master.0].openshift.common.ip }}"
  194. roles:
  195. - openshift_node
  196. - name: Additional node config
  197. hosts: oo_nodes_to_config
  198. vars:
  199. # TODO: Prefix flannel role variables.
  200. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  201. etcd_urls: "{{ hostvars[groups.oo_first_master.0].openshift.master.etcd_urls }}"
  202. embedded_etcd: "{{ hostvars[groups.oo_first_master.0].openshift.master.embedded_etcd }}"
  203. roles:
  204. - role: flannel
  205. when: openshift.common.use_flannel | bool
  206. - role: nuage_node
  207. when: openshift.common.use_nuage | bool
  208. - role: nickhammond.logrotate
  209. - role: fluentd_node
  210. when: openshift.common.use_fluentd | bool
  211. tasks:
  212. - name: Create group for deployment type
  213. group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
  214. changed_when: False
  215. - name: Delete temporary directory on localhost
  216. hosts: localhost
  217. connection: local
  218. become: no
  219. gather_facts: no
  220. tasks:
  221. - file: name={{ mktemp.stdout }} state=absent
  222. changed_when: False
  223. # Additional config for online type deployments
  224. - name: Additional instance config
  225. hosts: oo_nodes_deployment_type_online
  226. gather_facts: no
  227. roles:
  228. - os_env_extras
  229. - os_env_extras_node
  230. - name: Set schedulability
  231. hosts: oo_first_master
  232. vars:
  233. openshift_nodes: "{{ hostvars
  234. | oo_select_keys(groups['oo_nodes_to_config'])
  235. | oo_collect('openshift.common.hostname') }}"
  236. openshift_node_vars: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']) }}"
  237. pre_tasks:
  238. # Necessary because when you're on a node that's also a master the master will be
  239. # restarted after the node restarts docker and it will take up to 60 seconds for
  240. # systemd to start the master again
  241. - name: Wait for master API to become available before proceeding
  242. # Using curl here since the uri module requires python-httplib2 and
  243. # wait_for port doesn't provide health information.
  244. command: >
  245. curl -k --head --silent {{ openshift.master.api_url }}
  246. register: api_available_output
  247. until: api_available_output.stdout.find("200 OK") != -1
  248. retries: 120
  249. delay: 1
  250. changed_when: false
  251. when: openshift.common.is_containerized | bool
  252. roles:
  253. - openshift_manage_node