config.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238
  1. ---
  2. - name: Set master facts
  3. hosts: oo_masters_to_config
  4. vars:
  5. t_oo_option_master_debug_level: "{{ lookup('oo_option', 'openshift_master_debug_level') }}"
  6. pre_tasks:
  7. - name: Check for RPM generated config marker file .config_managed
  8. stat:
  9. path: /etc/origin/.config_managed
  10. register: rpmgenerated_config
  11. - name: Remove RPM generated config files if present
  12. file:
  13. path: "/etc/origin/{{ item }}"
  14. state: absent
  15. when: rpmgenerated_config.stat.exists == true and deployment_type in ['openshift-enterprise', 'atomic-enterprise']
  16. with_items:
  17. - master
  18. - node
  19. - .config_managed
  20. - set_fact:
  21. openshift_master_pod_eviction_timeout: "{{ lookup('oo_option', 'openshift_master_pod_eviction_timeout') | default(none, true) }}"
  22. when: openshift_master_pod_eviction_timeout is not defined
  23. - set_fact:
  24. openshift_master_etcd_port: "{{ (etcd_client_port | default('2379')) if (groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config) else none }}"
  25. openshift_master_etcd_hosts: "{{ hostvars
  26. | oo_select_keys(groups['oo_etcd_to_config']
  27. | default([]))
  28. | oo_collect('openshift.common.hostname')
  29. | default(none, true) }}"
  30. - set_fact:
  31. openshift_master_debug_level: "{{ t_oo_option_master_debug_level }}"
  32. when: openshift_master_debug_level is not defined and t_oo_option_master_debug_level != ""
  33. - set_fact:
  34. openshift_master_default_subdomain: "{{ lookup('oo_option', 'openshift_master_default_subdomain') | default(None, true) }}"
  35. when: openshift_master_default_subdomain is not defined
  36. - set_fact:
  37. openshift_hosted_metrics_deploy: "{{ lookup('oo_option', 'openshift_hosted_metrics_deploy') | default(false, true) }}"
  38. when: openshift_hosted_metrics_deploy is not defined
  39. - set_fact:
  40. openshift_hosted_metrics_duration: "{{ lookup('oo_option', 'openshift_hosted_metrics_duration') | default(7) }}"
  41. when: openshift_hosted_metrics_duration is not defined
  42. - set_fact:
  43. openshift_hosted_metrics_resolution: "{{ lookup('oo_option', 'openshift_hosted_metrics_resolution') | default('10s', true) }}"
  44. when: openshift_hosted_metrics_resolution is not defined
  45. roles:
  46. - openshift_facts
  47. post_tasks:
  48. - openshift_facts:
  49. role: master
  50. local_facts:
  51. api_port: "{{ openshift_master_api_port | default(None) }}"
  52. api_url: "{{ openshift_master_api_url | default(None) }}"
  53. api_use_ssl: "{{ openshift_master_api_use_ssl | default(None) }}"
  54. controllers_port: "{{ openshift_master_controllers_port | default(None) }}"
  55. public_api_url: "{{ openshift_master_public_api_url | default(None) }}"
  56. cluster_hostname: "{{ openshift_master_cluster_hostname | default(None) }}"
  57. cluster_public_hostname: "{{ openshift_master_cluster_public_hostname | default(None) }}"
  58. console_path: "{{ openshift_master_console_path | default(None) }}"
  59. console_port: "{{ openshift_master_console_port | default(None) }}"
  60. console_url: "{{ openshift_master_console_url | default(None) }}"
  61. console_use_ssl: "{{ openshift_master_console_use_ssl | default(None) }}"
  62. public_console_url: "{{ openshift_master_public_console_url | default(None) }}"
  63. ha: "{{ openshift_master_ha | default(groups.oo_masters | length > 1) }}"
  64. master_count: "{{ openshift_master_count | default(groups.oo_masters | length) }}"
  65. - openshift_facts:
  66. role: hosted
  67. openshift_env:
  68. openshift_hosted_registry_storage_kind: 'nfs'
  69. when: openshift_hosted_registry_storage_kind is not defined and groups.oo_nfs_to_config is defined and groups.oo_nfs_to_config | length > 0
  70. - name: Create temp directory for syncing certs
  71. hosts: localhost
  72. connection: local
  73. become: no
  74. gather_facts: no
  75. tasks:
  76. - name: Create local temp directory for syncing certs
  77. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  78. register: g_master_mktemp
  79. changed_when: False
  80. - name: Check for cached session secrets
  81. hosts: oo_first_master
  82. roles:
  83. - role: openshift_facts
  84. post_tasks:
  85. - openshift_facts:
  86. role: master
  87. local_facts:
  88. session_auth_secrets: "{{ openshift_master_session_auth_secrets | default(openshift.master.session_auth_secrets | default(None)) }}"
  89. session_encryption_secrets: "{{ openshift_master_session_encryption_secrets | default(openshift.master.session_encryption_secrets | default(None)) }}"
  90. - name: Generate master session secrets
  91. hosts: oo_first_master
  92. vars:
  93. g_session_secrets_present: "{{ (openshift.master.session_auth_secrets | default([])) | length > 0 and (openshift.master.session_encryption_secrets | default([])) | length > 0 }}"
  94. g_session_auth_secrets: "{{ [ 24 | oo_generate_secret ] }}"
  95. g_session_encryption_secrets: "{{ [ 24 | oo_generate_secret ] }}"
  96. roles:
  97. - role: openshift_facts
  98. tasks:
  99. - openshift_facts:
  100. role: master
  101. local_facts:
  102. session_auth_secrets: "{{ g_session_auth_secrets }}"
  103. session_encryption_secrets: "{{ g_session_encryption_secrets }}"
  104. when: not g_session_secrets_present | bool
  105. - name: Parse named certificates
  106. hosts: localhost
  107. connection: local
  108. become: no
  109. vars:
  110. internal_hostnames: "{{ hostvars[groups.oo_first_master.0].openshift.common.internal_hostnames }}"
  111. named_certificates: "{{ hostvars[groups.oo_first_master.0].openshift_master_named_certificates | default([]) }}"
  112. named_certificates_dir: "{{ hostvars[groups.oo_first_master.0].openshift.common.config_base }}/master/named_certificates/"
  113. tasks:
  114. - set_fact:
  115. parsed_named_certificates: "{{ named_certificates | oo_parse_named_certificates(named_certificates_dir, internal_hostnames) }}"
  116. when: named_certificates | length > 0
  117. - name: Deploy named certificates
  118. hosts: oo_masters_to_config
  119. vars:
  120. named_certs_dir: "{{ openshift.common.config_base }}/master/named_certificates/"
  121. named_certs_specified: "{{ openshift_master_named_certificates is defined }}"
  122. overwrite_named_certs: "{{ openshift_master_overwrite_named_certificates | default(false) }}"
  123. roles:
  124. - role: openshift_facts
  125. post_tasks:
  126. - openshift_facts:
  127. role: master
  128. local_facts:
  129. named_certificates: "{{ hostvars.localhost.parsed_named_certificates | default([]) }}"
  130. additive_facts_to_overwrite:
  131. - "{{ 'master.named_certificates' if overwrite_named_certs | bool else omit }}"
  132. - name: Clear named certificates
  133. file:
  134. path: "{{ named_certs_dir }}"
  135. state: absent
  136. when: overwrite_named_certs | bool
  137. - name: Ensure named certificate directory exists
  138. file:
  139. path: "{{ named_certs_dir }}"
  140. state: directory
  141. mode: 0700
  142. when: named_certs_specified | bool
  143. - name: Land named certificates
  144. copy: src="{{ item.certfile }}" dest="{{ named_certs_dir }}"
  145. with_items: "{{ openshift_master_named_certificates }}"
  146. when: named_certs_specified | bool
  147. - name: Land named certificate keys
  148. copy: src="{{ item.keyfile }}" dest="{{ named_certs_dir }}" mode=0600
  149. with_items: "{{ openshift_master_named_certificates }}"
  150. when: named_certs_specified | bool
  151. - name: Configure masters
  152. hosts: oo_masters_to_config
  153. any_errors_fatal: true
  154. vars:
  155. sync_tmpdir: "{{ hostvars.localhost.g_master_mktemp.stdout }}"
  156. openshift_master_ha: "{{ openshift.master.ha }}"
  157. openshift_master_count: "{{ openshift.master.master_count }}"
  158. openshift_master_session_auth_secrets: "{{ hostvars[groups.oo_first_master.0].openshift.master.session_auth_secrets }}"
  159. openshift_master_session_encryption_secrets: "{{ hostvars[groups.oo_first_master.0].openshift.master.session_encryption_secrets }}"
  160. openshift_no_proxy_internal_hostnames: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']
  161. | union(groups['oo_masters_to_config'])
  162. | union(groups['oo_etcd_to_config'] | default([])))
  163. | oo_collect('openshift.common.hostname') | default([]) | join (',')
  164. }}"
  165. roles:
  166. - role: openshift_master_facts
  167. - role: openshift_hosted_facts
  168. - role: openshift_master_certificates
  169. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  170. openshift_master_etcd_hosts: "{{ hostvars
  171. | oo_select_keys(groups['oo_etcd_to_config'] | default([]))
  172. | oo_collect('openshift.common.hostname')
  173. | default(none, true) }}"
  174. openshift_master_hostnames: "{{ hostvars
  175. | oo_select_keys(groups['oo_masters_to_config'] | default([]))
  176. | oo_collect('openshift.common.all_hostnames')
  177. | oo_flatten | unique }}"
  178. - role: openshift_etcd_client_certificates
  179. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  180. etcd_cert_subdir: "openshift-master-{{ openshift.common.hostname }}"
  181. etcd_cert_config_dir: "{{ openshift.common.config_base }}/master"
  182. etcd_cert_prefix: "master.etcd-"
  183. when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config
  184. - role: openshift_clock
  185. - role: openshift_cloud_provider
  186. - role: openshift_builddefaults
  187. - role: os_firewall
  188. os_firewall_allow:
  189. - service: etcd embedded
  190. port: 4001/tcp
  191. - service: api server https
  192. port: "{{ openshift.master.api_port }}/tcp"
  193. - service: api controllers https
  194. port: "{{ openshift.master.controllers_port }}/tcp"
  195. - service: skydns tcp
  196. port: "{{ openshift.master.dns_port }}/tcp"
  197. - service: skydns udp
  198. port: "{{ openshift.master.dns_port }}/udp"
  199. - service: Fluentd td-agent tcp
  200. port: 24224/tcp
  201. - service: Fluentd td-agent udp
  202. port: 24224/udp
  203. - service: pcsd
  204. port: 2224/tcp
  205. - service: Corosync UDP
  206. port: 5404/udp
  207. - service: Corosync UDP
  208. port: 5405/udp
  209. - role: openshift_master
  210. openshift_master_hosts: "{{ groups.oo_masters_to_config }}"
  211. - role: nickhammond.logrotate
  212. - role: nuage_master
  213. when: openshift.common.use_nuage | bool
  214. post_tasks:
  215. - name: Create group for deployment type
  216. group_by: key=oo_masters_deployment_type_{{ openshift.common.deployment_type }}
  217. changed_when: False
  218. - name: Delete temporary directory on localhost
  219. hosts: localhost
  220. connection: local
  221. become: no
  222. gather_facts: no
  223. tasks:
  224. - file: name={{ g_master_mktemp.stdout }} state=absent
  225. changed_when: False