main.yml 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287
  1. ---
  2. # TODO: add ability to configure certificates given either a local file to
  3. # point to or certificate contents, set in default cert locations.
  4. # Authentication Variable Validation
  5. # TODO: validate the different identity provider kinds as well
  6. - fail:
  7. msg: >
  8. Invalid OAuth grant method: {{ openshift_master_oauth_grant_method }}
  9. when:
  10. - openshift_master_oauth_grant_method is defined
  11. - openshift_master_oauth_grant_method not in openshift_master_valid_grant_methods
  12. - name: Open up firewall ports
  13. import_tasks: firewall.yml
  14. - name: Install Master package
  15. package:
  16. name: "{{ openshift_service_type }}-master{{ openshift_pkg_version | default('') | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}"
  17. state: present
  18. when:
  19. - not openshift_is_containerized | bool
  20. register: result
  21. until: result is succeeded
  22. - name: Create r_openshift_master_data_dir
  23. file:
  24. path: "{{ r_openshift_master_data_dir }}"
  25. state: directory
  26. mode: 0755
  27. owner: root
  28. group: root
  29. when:
  30. - openshift_is_containerized | bool
  31. - name: Reload systemd units
  32. command: systemctl daemon-reload
  33. when:
  34. - openshift_is_containerized | bool
  35. - name: Re-gather package dependent master facts
  36. openshift_facts:
  37. - name: Create config parent directory if it does not exist
  38. file:
  39. path: "{{ openshift_master_config_dir }}"
  40. state: directory
  41. - name: Create the policy file if it does not already exist
  42. command: >
  43. {{ openshift_client_binary }} adm create-bootstrap-policy-file
  44. --filename={{ openshift_master_policy }}
  45. args:
  46. creates: "{{ openshift_master_policy }}"
  47. notify:
  48. - restart master api
  49. - restart master controllers
  50. - name: Create the scheduler config
  51. copy:
  52. content: "{{ scheduler_config | to_nice_json }}"
  53. dest: "{{ openshift_master_scheduler_conf }}"
  54. backup: true
  55. notify:
  56. - restart master api
  57. - restart master controllers
  58. - name: Install httpd-tools if needed
  59. package: name=httpd-tools state=present
  60. when:
  61. - item.kind == 'HTPasswdPasswordIdentityProvider'
  62. - not openshift_is_atomic | bool
  63. with_items: "{{ openshift.master.identity_providers }}"
  64. register: result
  65. until: result is succeeded
  66. - name: Ensure htpasswd directory exists
  67. file:
  68. path: "{{ item.filename | dirname }}"
  69. state: directory
  70. when:
  71. - item.kind == 'HTPasswdPasswordIdentityProvider'
  72. with_items: "{{ openshift.master.identity_providers }}"
  73. - name: Create the htpasswd file if needed
  74. template:
  75. dest: "{{ item.filename }}"
  76. src: htpasswd.j2
  77. backup: yes
  78. when:
  79. - item.kind == 'HTPasswdPasswordIdentityProvider'
  80. - openshift.master.manage_htpasswd | bool
  81. with_items: "{{ openshift.master.identity_providers }}"
  82. - name: Ensure htpasswd file exists
  83. copy:
  84. dest: "{{ item.filename }}"
  85. force: no
  86. content: ""
  87. mode: 0600
  88. when:
  89. - item.kind == 'HTPasswdPasswordIdentityProvider'
  90. with_items: "{{ openshift.master.identity_providers }}"
  91. - name: Create the ldap ca file if needed
  92. copy:
  93. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"
  94. content: "{{ openshift.master.ldap_ca }}"
  95. mode: 0600
  96. backup: yes
  97. when:
  98. - openshift.master.ldap_ca is defined
  99. - item.kind == 'LDAPPasswordIdentityProvider'
  100. with_items: "{{ openshift.master.identity_providers }}"
  101. - name: Create the openid ca file if needed
  102. copy:
  103. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('openid_ca.crt') }}"
  104. content: "{{ openshift.master.openid_ca }}"
  105. mode: 0600
  106. backup: yes
  107. when:
  108. - openshift.master.openid_ca is defined
  109. - item.kind == 'OpenIDIdentityProvider'
  110. - item.ca | default('') != ''
  111. with_items: "{{ openshift.master.identity_providers }}"
  112. - name: Create the request header ca file if needed
  113. copy:
  114. dest: "{{ item.clientCA if 'clientCA' in item and '/' in item.clientCA else openshift_master_config_dir ~ '/' ~ item.clientCA | default('request_header_ca.crt') }}"
  115. content: "{{ openshift.master.request_header_ca }}"
  116. mode: 0600
  117. backup: yes
  118. when:
  119. - openshift.master.request_header_ca is defined
  120. - item.kind == 'RequestHeaderIdentityProvider'
  121. - item.clientCA | default('') != ''
  122. with_items: "{{ openshift.master.identity_providers }}"
  123. - name: Include push_via_dns.yml
  124. include_tasks: push_via_dns.yml
  125. - name: Set fact of all etcd host IPs
  126. openshift_facts:
  127. role: common
  128. local_facts:
  129. no_proxy_etcd_host_ips: "{{ openshift_no_proxy_etcd_host_ips }}"
  130. - name: Update journald config
  131. include_tasks: journald.yml
  132. - name: Install the systemd units
  133. include_tasks: systemd_units.yml
  134. - name: Install Master system container
  135. include_tasks: system_container.yml
  136. when:
  137. - openshift_is_containerized | bool
  138. - l_is_master_system_container | bool
  139. - name: Create session secrets file
  140. template:
  141. dest: "{{ openshift.master.session_secrets_file }}"
  142. src: sessionSecretsFile.yaml.v1.j2
  143. owner: root
  144. group: root
  145. mode: 0600
  146. when:
  147. - openshift.master.session_auth_secrets is defined
  148. - openshift.master.session_encryption_secrets is defined
  149. notify:
  150. - restart master api
  151. - set_fact:
  152. # translate_idps is a custom filter in role lib_utils
  153. translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1') }}"
  154. # TODO: add the validate parameter when there is a validation command to run
  155. - name: Create master config
  156. template:
  157. dest: "{{ openshift_master_config_file }}"
  158. src: master.yaml.v1.j2
  159. backup: true
  160. owner: root
  161. group: root
  162. mode: 0600
  163. notify:
  164. - restart master api
  165. - restart master controllers
  166. - include_tasks: bootstrap_settings.yml
  167. when: openshift_master_bootstrap_enabled | default(False)
  168. - include_tasks: set_loopback_context.yml
  169. - name: Start and enable master api on first master
  170. systemd:
  171. name: "{{ openshift_service_type }}-master-api"
  172. enabled: yes
  173. state: started
  174. when:
  175. - inventory_hostname == openshift_master_hosts[0]
  176. register: l_start_result
  177. until: not (l_start_result is failed)
  178. retries: 1
  179. delay: 60
  180. - name: Dump logs from master-api if it failed
  181. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-api
  182. when:
  183. - l_start_result is failed
  184. - set_fact:
  185. master_api_service_status_changed: "{{ l_start_result is changed }}"
  186. when:
  187. - inventory_hostname == openshift_master_hosts[0]
  188. - pause:
  189. seconds: 15
  190. when:
  191. - openshift_master_ha | bool
  192. - name: Start and enable master api all masters
  193. systemd:
  194. name: "{{ openshift_service_type }}-master-api"
  195. enabled: yes
  196. state: started
  197. when:
  198. - inventory_hostname != openshift_master_hosts[0]
  199. register: l_start_result
  200. until: not (l_start_result is failed)
  201. retries: 1
  202. delay: 60
  203. - name: Dump logs from master-api if it failed
  204. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-api
  205. when:
  206. - l_start_result is failed
  207. - set_fact:
  208. master_api_service_status_changed: "{{ l_start_result is changed }}"
  209. when:
  210. - inventory_hostname != openshift_master_hosts[0]
  211. # A separate wait is required here for native HA since notifies will
  212. # be resolved after all tasks in the role.
  213. - include_tasks: check_master_api_is_ready.yml
  214. when:
  215. - master_api_service_status_changed | bool
  216. - name: Start and enable master controller service
  217. systemd:
  218. name: "{{ openshift_service_type }}-master-controllers"
  219. enabled: yes
  220. state: started
  221. register: l_start_result
  222. until: not (l_start_result is failed)
  223. retries: 1
  224. delay: 60
  225. - name: configure vsphere svc account
  226. include_role:
  227. name: openshift_cloud_provider
  228. tasks_from: vsphere-svc
  229. when:
  230. - openshift_cloudprovider_kind in 'vsphere'
  231. - openshift_version | version_compare('3.9', '>=')
  232. - inventory_hostname == openshift_master_hosts[0]
  233. - name: update vsphere provider master config
  234. include_tasks: update-vsphere.yml
  235. when:
  236. - openshift_cloudprovider_kind in 'vsphere'
  237. - openshift_version | version_compare('3.9', '>=')
  238. - name: Dump logs from master-controllers if it failed
  239. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-controllers
  240. when:
  241. - l_start_result is failed
  242. - name: Set fact master_controllers_service_status_changed
  243. set_fact:
  244. master_controllers_service_status_changed: "{{ l_start_result is changed }}"
  245. - name: node bootstrap settings
  246. include_tasks: bootstrap.yml
  247. when: openshift_master_bootstrap_enabled | default(False)