main.yml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  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: Install the systemd units
  131. include_tasks: systemd_units.yml
  132. - name: Install Master system container
  133. include_tasks: system_container.yml
  134. when:
  135. - openshift_is_containerized | bool
  136. - l_is_master_system_container | bool
  137. - name: Create session secrets file
  138. template:
  139. dest: "{{ openshift.master.session_secrets_file }}"
  140. src: sessionSecretsFile.yaml.v1.j2
  141. owner: root
  142. group: root
  143. mode: 0600
  144. when:
  145. - openshift.master.session_auth_secrets is defined
  146. - openshift.master.session_encryption_secrets is defined
  147. notify:
  148. - restart master api
  149. - set_fact:
  150. # translate_idps is a custom filter in role lib_utils
  151. translated_identity_providers: "{{ openshift_master_identity_providers | translate_idps('v1') }}"
  152. # TODO: add the validate parameter when there is a validation command to run
  153. - name: Create master config
  154. template:
  155. dest: "{{ openshift_master_config_file }}"
  156. src: master.yaml.v1.j2
  157. backup: true
  158. owner: root
  159. group: root
  160. mode: 0600
  161. notify:
  162. - restart master api
  163. - restart master controllers
  164. - include_tasks: bootstrap_settings.yml
  165. when: openshift_master_bootstrap_enabled | default(False)
  166. - include_tasks: set_loopback_context.yml
  167. - name: Start and enable master api
  168. systemd:
  169. name: "{{ openshift_service_type }}-master-api"
  170. enabled: yes
  171. state: started
  172. register: l_start_result
  173. until: not (l_start_result is failed)
  174. retries: 1
  175. delay: 60
  176. - name: Dump logs from master-api if it failed
  177. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-api
  178. when:
  179. - l_start_result is failed
  180. - set_fact:
  181. master_api_service_status_changed: "{{ l_start_result is changed }}"
  182. - include_tasks: check_master_api_is_ready.yml
  183. when:
  184. - master_api_service_status_changed | bool
  185. - name: Start and enable master controller service
  186. systemd:
  187. name: "{{ openshift_service_type }}-master-controllers"
  188. enabled: yes
  189. state: started
  190. register: l_start_result
  191. until: not (l_start_result is failed)
  192. retries: 1
  193. delay: 60
  194. - name: configure vsphere svc account
  195. include_role:
  196. name: openshift_cloud_provider
  197. tasks_from: vsphere-svc
  198. when:
  199. - openshift_cloudprovider_kind is defined
  200. - openshift_cloudprovider_kind == 'vsphere'
  201. - openshift_version | version_compare('3.9', '>=')
  202. - inventory_hostname == openshift_master_hosts[0]
  203. - name: update vsphere provider master config
  204. include_tasks: update-vsphere.yml
  205. when:
  206. - openshift_cloudprovider_kind is defined
  207. - openshift_cloudprovider_kind == 'vsphere'
  208. - openshift_version | version_compare('3.9', '>=')
  209. - name: Dump logs from master-controllers if it failed
  210. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-controllers
  211. when:
  212. - l_start_result is failed
  213. - name: Set fact master_controllers_service_status_changed
  214. set_fact:
  215. master_controllers_service_status_changed: "{{ l_start_result is changed }}"
  216. - name: node bootstrap settings
  217. include_tasks: bootstrap.yml
  218. when: openshift_master_bootstrap_enabled | default(False)