config.yml 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  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: node
  18. local_facts:
  19. labels: "{{ openshift_node_labels | default(None) }}"
  20. annotations: "{{ openshift_node_annotations | default(None) }}"
  21. schedulable: "{{ openshift_schedulable | default(openshift_scheduleable) | default(None) }}"
  22. - name: Create temp directory for syncing certs
  23. hosts: localhost
  24. connection: local
  25. become: no
  26. gather_facts: no
  27. tasks:
  28. - name: Create local temp directory for syncing certs
  29. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  30. register: mktemp
  31. changed_when: False
  32. - name: Evaluate node groups
  33. hosts: localhost
  34. become: no
  35. connection: local
  36. tasks:
  37. - name: Evaluate oo_containerized_master_nodes
  38. add_host:
  39. name: "{{ item }}"
  40. groups: oo_containerized_master_nodes
  41. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  42. ansible_become: "{{ g_sudo | default(omit) }}"
  43. with_items: "{{ groups.oo_nodes_to_config | default([]) }}"
  44. when: hostvars[item].openshift.common.is_containerized | bool and (item in groups.oo_nodes_to_config and item in groups.oo_masters_to_config)
  45. - name: Configure node instances
  46. hosts: oo_containerized_master_nodes
  47. serial: 1
  48. vars:
  49. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  50. openshift_node_first_master_ip: "{{ hostvars[groups.oo_first_master.0].openshift.common.ip }}"
  51. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"
  52. openshift_no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
  53. | union(groups['oo_masters_to_config'])
  54. | union(groups['oo_etcd_to_config'] | default([])))
  55. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  56. }}"
  57. when: "{{ (openshift_http_proxy is defined or openshift_https_proxy is defined) and
  58. openshift_generate_no_proxy_hosts | default(True) | bool }}"
  59. roles:
  60. - role: openshift_node
  61. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  62. - name: Configure node instances
  63. hosts: oo_nodes_to_config:!oo_containerized_master_nodes
  64. vars:
  65. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  66. openshift_node_first_master_ip: "{{ hostvars[groups.oo_first_master.0].openshift.common.ip }}"
  67. openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"
  68. openshift_no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
  69. | union(groups['oo_masters_to_config'])
  70. | union(groups['oo_etcd_to_config'] | default([])))
  71. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  72. }}"
  73. when: "{{ (openshift_http_proxy is defined or openshift_https_proxy is defined) and
  74. openshift_generate_no_proxy_hosts | default(True) | bool }}"
  75. roles:
  76. - role: openshift_node
  77. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  78. - name: Gather and set facts for flannel certificatess
  79. hosts: oo_nodes_to_config
  80. tasks:
  81. - name: Check status of flannel external etcd certificates
  82. stat:
  83. path: "{{ openshift.common.config_base }}/node/{{ item }}"
  84. with_items:
  85. - node.etcd-client.crt
  86. - node.etcd-ca.crt
  87. register: g_external_etcd_flannel_cert_stat_result
  88. when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config and (openshift.common.use_flannel | bool)
  89. - set_fact:
  90. etcd_client_flannel_certs_missing: "{{ False in g_external_etcd_flannel_cert_stat_result.results
  91. | oo_collect(attribute='stat.exists')
  92. | list }}"
  93. etcd_cert_subdir: openshift-node-{{ openshift.common.hostname }}
  94. etcd_cert_config_dir: "{{ openshift.common.config_base }}/node"
  95. etcd_cert_prefix: node.etcd-
  96. etcd_hostname: "{{ openshift.common.hostname }}"
  97. etcd_ip: "{{ openshift.common.ip }}"
  98. when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 and (openshift.common.use_flannel | bool)
  99. - name: Configure flannel etcd certificates
  100. hosts: oo_first_etcd
  101. vars:
  102. etcd_generated_certs_dir: /etc/etcd/generated_certs
  103. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  104. pre_tasks:
  105. - set_fact:
  106. etcd_needing_client_certs: "{{ hostvars
  107. | oo_select_keys(groups['oo_nodes_to_config'])
  108. | oo_filter_list('etcd_client_flannel_certs_missing') | default([]) }}"
  109. roles:
  110. - role: openshift_etcd_certificates
  111. when: openshift_use_flannel | default(false) | bool
  112. post_tasks:
  113. - name: Create a tarball of the etcd flannel certs
  114. command: >
  115. tar -czvf {{ etcd_generated_certs_dir }}/{{ item.etcd_cert_subdir }}.tgz
  116. -C {{ etcd_generated_certs_dir }}/{{ item.etcd_cert_subdir }} .
  117. args:
  118. creates: "{{ etcd_generated_certs_dir }}/{{ item.etcd_cert_subdir }}.tgz"
  119. with_items: "{{ etcd_needing_client_certs | default([]) }}"
  120. - name: Retrieve the etcd cert tarballs
  121. fetch:
  122. src: "{{ etcd_generated_certs_dir }}/{{ item.etcd_cert_subdir }}.tgz"
  123. dest: "{{ sync_tmpdir }}/"
  124. flat: yes
  125. fail_on_missing: yes
  126. validate_checksum: yes
  127. with_items: "{{ etcd_needing_client_certs | default([]) }}"
  128. - name: Copy the external etcd flannel certs to the nodes
  129. hosts: oo_nodes_to_config
  130. vars:
  131. sync_tmpdir: "{{ hostvars.localhost.mktemp.stdout }}"
  132. tasks:
  133. - name: Ensure certificate directory exists
  134. file:
  135. path: "{{ openshift.common.config_base }}/node"
  136. state: directory
  137. when: etcd_client_flannel_certs_missing | default(false) | bool
  138. - name: Unarchive the tarball on the master
  139. unarchive:
  140. src: "{{ sync_tmpdir }}/{{ etcd_cert_subdir }}.tgz"
  141. dest: "{{ etcd_cert_config_dir }}"
  142. when: etcd_client_flannel_certs_missing | default(false) | bool
  143. - file:
  144. path: "{{ etcd_cert_config_dir }}/{{ item }}"
  145. owner: root
  146. group: root
  147. mode: 0600
  148. with_items:
  149. - node.etcd-client.crt
  150. - node.etcd-client.key
  151. - node.etcd-ca.crt
  152. when: etcd_client_flannel_certs_missing | default(false) | bool
  153. - name: Additional node config
  154. hosts: oo_nodes_to_config
  155. vars:
  156. # TODO: Prefix flannel role variables.
  157. openshift_node_master_api_url: "{{ hostvars[groups.oo_first_master.0].openshift.master.api_url }}"
  158. etcd_urls: "{{ hostvars[groups.oo_first_master.0].openshift.master.etcd_urls }}"
  159. embedded_etcd: "{{ hostvars[groups.oo_first_master.0].openshift.master.embedded_etcd }}"
  160. roles:
  161. - role: flannel
  162. when: openshift.common.use_flannel | bool
  163. - role: nuage_node
  164. when: openshift.common.use_nuage | bool
  165. - role: nickhammond.logrotate
  166. tasks:
  167. - name: Create group for deployment type
  168. group_by: key=oo_nodes_deployment_type_{{ openshift.common.deployment_type }}
  169. changed_when: False
  170. - name: Delete temporary directory on localhost
  171. hosts: localhost
  172. connection: local
  173. become: no
  174. gather_facts: no
  175. tasks:
  176. - file: name={{ mktemp.stdout }} state=absent
  177. changed_when: False
  178. - name: Set schedulability
  179. hosts: oo_first_master
  180. vars:
  181. openshift_nodes: "{{ hostvars
  182. | oo_select_keys(groups['oo_nodes_to_config'])
  183. | oo_collect('openshift.common.hostname') }}"
  184. openshift_node_vars: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']) }}"
  185. pre_tasks:
  186. # Necessary because when you're on a node that's also a master the master will be
  187. # restarted after the node restarts docker and it will take up to 60 seconds for
  188. # systemd to start the master again
  189. - name: Wait for master API to become available before proceeding
  190. # Using curl here since the uri module requires python-httplib2 and
  191. # wait_for port doesn't provide health information.
  192. command: >
  193. curl --silent --cacert {{ openshift.common.config_base }}/master/ca.crt
  194. {{ openshift.master.api_url }}/healthz/ready
  195. register: api_available_output
  196. until: api_available_output.stdout == 'ok'
  197. retries: 120
  198. delay: 1
  199. changed_when: false
  200. when: openshift.common.is_containerized | bool
  201. roles:
  202. - openshift_manage_node