config.yml 10 KB

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