main.yml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281
  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. # This is an ugly hack to verify settings are in a file without modifying them with lineinfile.
  124. # The template file will stomp any other settings made.
  125. - block:
  126. - name: check whether our docker-registry setting exists in the env file
  127. command: "awk '/^OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000/' /etc/sysconfig/{{ openshift_service_type }}-master"
  128. failed_when: false
  129. changed_when: false
  130. register: l_already_set
  131. - set_fact:
  132. openshift_push_via_dns: "{{ openshift.common.version_gte_3_6 or (l_already_set.stdout is defined and l_already_set.stdout is match('OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000')) }}"
  133. - name: Set fact of all etcd host IPs
  134. openshift_facts:
  135. role: common
  136. local_facts:
  137. no_proxy_etcd_host_ips: "{{ openshift_no_proxy_etcd_host_ips }}"
  138. - name: Update journald config
  139. include_tasks: journald.yml
  140. - name: Install the systemd units
  141. include_tasks: systemd_units.yml
  142. - name: Install Master system container
  143. include_tasks: system_container.yml
  144. when:
  145. - openshift_is_containerized | bool
  146. - l_is_master_system_container | bool
  147. - name: Create session secrets file
  148. template:
  149. dest: "{{ openshift.master.session_secrets_file }}"
  150. src: sessionSecretsFile.yaml.v1.j2
  151. owner: root
  152. group: root
  153. mode: 0600
  154. when:
  155. - openshift.master.session_auth_secrets is defined
  156. - openshift.master.session_encryption_secrets is defined
  157. notify:
  158. - restart master api
  159. - set_fact:
  160. # translate_idps is a custom filter in role lib_utils
  161. translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1') }}"
  162. # TODO: add the validate parameter when there is a validation command to run
  163. - name: Create master config
  164. template:
  165. dest: "{{ openshift_master_config_file }}"
  166. src: master.yaml.v1.j2
  167. backup: true
  168. owner: root
  169. group: root
  170. mode: 0600
  171. notify:
  172. - restart master api
  173. - restart master controllers
  174. - include_tasks: bootstrap_settings.yml
  175. when: openshift_master_bootstrap_enabled | default(False)
  176. - include_tasks: set_loopback_context.yml
  177. - name: Start and enable master api on first master
  178. systemd:
  179. name: "{{ openshift_service_type }}-master-api"
  180. enabled: yes
  181. state: started
  182. when:
  183. - inventory_hostname == openshift_master_hosts[0]
  184. register: l_start_result
  185. until: not (l_start_result is failed)
  186. retries: 1
  187. delay: 60
  188. - name: Dump logs from master-api if it failed
  189. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-api
  190. when:
  191. - l_start_result is failed
  192. - set_fact:
  193. master_api_service_status_changed: "{{ l_start_result is changed }}"
  194. when:
  195. - inventory_hostname == openshift_master_hosts[0]
  196. - pause:
  197. seconds: 15
  198. when:
  199. - openshift.master.ha | bool
  200. - name: Start and enable master api all masters
  201. systemd:
  202. name: "{{ openshift_service_type }}-master-api"
  203. enabled: yes
  204. state: started
  205. when:
  206. - inventory_hostname != openshift_master_hosts[0]
  207. register: l_start_result
  208. until: not (l_start_result is failed)
  209. retries: 1
  210. delay: 60
  211. - name: Dump logs from master-api if it failed
  212. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-api
  213. when:
  214. - l_start_result is failed
  215. - set_fact:
  216. master_api_service_status_changed: "{{ l_start_result is changed }}"
  217. when:
  218. - inventory_hostname != openshift_master_hosts[0]
  219. # A separate wait is required here for native HA since notifies will
  220. # be resolved after all tasks in the role.
  221. - include_tasks: check_master_api_is_ready.yml
  222. when:
  223. - master_api_service_status_changed | bool
  224. - name: Start and enable master controller service
  225. systemd:
  226. name: "{{ openshift_service_type }}-master-controllers"
  227. enabled: yes
  228. state: started
  229. register: l_start_result
  230. until: not (l_start_result is failed)
  231. retries: 1
  232. delay: 60
  233. - name: Dump logs from master-controllers if it failed
  234. command: journalctl --no-pager -n 100 -u {{ openshift_service_type }}-master-controllers
  235. when:
  236. - l_start_result is failed
  237. - name: Set fact master_controllers_service_status_changed
  238. set_fact:
  239. master_controllers_service_status_changed: "{{ l_start_result is changed }}"
  240. - name: node bootstrap settings
  241. include_tasks: bootstrap.yml
  242. when: openshift_master_bootstrap_enabled | default(False)