main.yml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  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. # HA Variable Validation
  13. - fail:
  14. msg: "openshift_master_cluster_method must be set to either 'native' or 'pacemaker' for multi-master installations"
  15. when:
  16. - openshift.master.ha | bool
  17. - (openshift.master.cluster_method is not defined) or (openshift.master.cluster_method is defined and openshift.master.cluster_method not in ["native", "pacemaker"])
  18. - fail:
  19. msg: "openshift_master_cluster_password must be set for multi-master installations"
  20. when:
  21. - openshift.master.ha | bool
  22. - openshift.master.cluster_method == "pacemaker"
  23. - openshift_master_cluster_password is not defined or not openshift_master_cluster_password
  24. - fail:
  25. msg: "Pacemaker based HA is not supported at this time when used with containerized installs"
  26. when:
  27. - openshift.master.ha | bool
  28. - openshift.master.cluster_method == "pacemaker"
  29. - openshift.common.is_containerized | bool
  30. - name: Open up firewall ports
  31. import_tasks: firewall.yml
  32. - name: Install Master package
  33. package:
  34. name: "{{ openshift.common.service_type }}-master{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }}"
  35. state: present
  36. when:
  37. - not openshift.common.is_containerized | bool
  38. register: result
  39. until: result | success
  40. - name: Create r_openshift_master_data_dir
  41. file:
  42. path: "{{ r_openshift_master_data_dir }}"
  43. state: directory
  44. mode: 0755
  45. owner: root
  46. group: root
  47. when:
  48. - openshift.common.is_containerized | bool
  49. - name: Reload systemd units
  50. command: systemctl daemon-reload
  51. when:
  52. - openshift.common.is_containerized | bool
  53. - name: Re-gather package dependent master facts
  54. openshift_facts:
  55. - name: Create config parent directory if it does not exist
  56. file:
  57. path: "{{ openshift_master_config_dir }}"
  58. state: directory
  59. - name: Create the policy file if it does not already exist
  60. command: >
  61. {{ openshift.common.client_binary }} adm create-bootstrap-policy-file
  62. --filename={{ openshift_master_policy }}
  63. args:
  64. creates: "{{ openshift_master_policy }}"
  65. notify:
  66. - restart master api
  67. - restart master controllers
  68. - name: Create the scheduler config
  69. copy:
  70. content: "{{ scheduler_config | to_nice_json }}"
  71. dest: "{{ openshift_master_scheduler_conf }}"
  72. backup: true
  73. notify:
  74. - restart master api
  75. - restart master controllers
  76. - name: Install httpd-tools if needed
  77. package: name=httpd-tools state=present
  78. when:
  79. - item.kind == 'HTPasswdPasswordIdentityProvider'
  80. - not openshift.common.is_atomic | bool
  81. with_items: "{{ openshift.master.identity_providers }}"
  82. register: result
  83. until: result | success
  84. - name: Ensure htpasswd directory exists
  85. file:
  86. path: "{{ item.filename | dirname }}"
  87. state: directory
  88. when:
  89. - item.kind == 'HTPasswdPasswordIdentityProvider'
  90. with_items: "{{ openshift.master.identity_providers }}"
  91. - name: Create the htpasswd file if needed
  92. template:
  93. dest: "{{ item.filename }}"
  94. src: htpasswd.j2
  95. backup: yes
  96. when:
  97. - item.kind == 'HTPasswdPasswordIdentityProvider'
  98. - openshift.master.manage_htpasswd | bool
  99. with_items: "{{ openshift.master.identity_providers }}"
  100. - name: Ensure htpasswd file exists
  101. copy:
  102. dest: "{{ item.filename }}"
  103. force: no
  104. content: ""
  105. mode: 0600
  106. when:
  107. - item.kind == 'HTPasswdPasswordIdentityProvider'
  108. with_items: "{{ openshift.master.identity_providers }}"
  109. - name: Create the ldap ca file if needed
  110. copy:
  111. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"
  112. content: "{{ openshift.master.ldap_ca }}"
  113. mode: 0600
  114. backup: yes
  115. when:
  116. - openshift.master.ldap_ca is defined
  117. - item.kind == 'LDAPPasswordIdentityProvider'
  118. with_items: "{{ openshift.master.identity_providers }}"
  119. - name: Create the openid ca file if needed
  120. copy:
  121. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('openid_ca.crt') }}"
  122. content: "{{ openshift.master.openid_ca }}"
  123. mode: 0600
  124. backup: yes
  125. when:
  126. - openshift.master.openid_ca is defined
  127. - item.kind == 'OpenIDIdentityProvider'
  128. - item.ca | default('') != ''
  129. with_items: "{{ openshift.master.identity_providers }}"
  130. - name: Create the request header ca file if needed
  131. copy:
  132. dest: "{{ item.clientCA if 'clientCA' in item and '/' in item.clientCA else openshift_master_config_dir ~ '/' ~ item.clientCA | default('request_header_ca.crt') }}"
  133. content: "{{ openshift.master.request_header_ca }}"
  134. mode: 0600
  135. backup: yes
  136. when:
  137. - openshift.master.request_header_ca is defined
  138. - item.kind == 'RequestHeaderIdentityProvider'
  139. - item.clientCA | default('') != ''
  140. with_items: "{{ openshift.master.identity_providers }}"
  141. # This is an ugly hack to verify settings are in a file without modifying them with lineinfile.
  142. # The template file will stomp any other settings made.
  143. - block:
  144. - name: check whether our docker-registry setting exists in the env file
  145. command: "awk '/^OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000/' /etc/sysconfig/{{ openshift.common.service_type }}-master"
  146. failed_when: false
  147. changed_when: false
  148. register: l_already_set
  149. - set_fact:
  150. openshift_push_via_dns: "{{ openshift.common.version_gte_3_6 or (l_already_set.stdout is defined and l_already_set.stdout | match('OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000')) }}"
  151. - name: Set fact of all etcd host IPs
  152. openshift_facts:
  153. role: common
  154. local_facts:
  155. no_proxy_etcd_host_ips: "{{ openshift_no_proxy_etcd_host_ips }}"
  156. - name: Update journald config
  157. include_tasks: journald.yml
  158. - name: Install the systemd units
  159. include_tasks: systemd_units.yml
  160. - name: Install Master system container
  161. include_tasks: system_container.yml
  162. when:
  163. - openshift.common.is_containerized | bool
  164. - l_is_master_system_container | bool
  165. - name: Create session secrets file
  166. template:
  167. dest: "{{ openshift.master.session_secrets_file }}"
  168. src: sessionSecretsFile.yaml.v1.j2
  169. owner: root
  170. group: root
  171. mode: 0600
  172. when:
  173. - openshift.master.session_auth_secrets is defined
  174. - openshift.master.session_encryption_secrets is defined
  175. notify:
  176. - restart master api
  177. - set_fact:
  178. translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1') }}"
  179. # TODO: add the validate parameter when there is a validation command to run
  180. - name: Create master config
  181. template:
  182. dest: "{{ openshift_master_config_file }}"
  183. src: master.yaml.v1.j2
  184. backup: true
  185. owner: root
  186. group: root
  187. mode: 0600
  188. notify:
  189. - restart master api
  190. - restart master controllers
  191. - include_tasks: bootstrap_settings.yml
  192. when: openshift_master_bootstrap_enabled | default(False)
  193. - include_tasks: set_loopback_context.yml
  194. - name: Start and enable master api on first master
  195. systemd:
  196. name: "{{ openshift.common.service_type }}-master-api"
  197. enabled: yes
  198. state: started
  199. when:
  200. - openshift.master.cluster_method == 'native'
  201. - inventory_hostname == openshift_master_hosts[0]
  202. register: l_start_result
  203. until: not l_start_result | failed
  204. retries: 1
  205. delay: 60
  206. - name: Dump logs from master-api if it failed
  207. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-api
  208. when:
  209. - l_start_result | failed
  210. - set_fact:
  211. master_api_service_status_changed: "{{ l_start_result | changed }}"
  212. when:
  213. - openshift.master.cluster_method == 'native'
  214. - inventory_hostname == openshift_master_hosts[0]
  215. - pause:
  216. seconds: 15
  217. when:
  218. - openshift.master.ha | bool
  219. - openshift.master.cluster_method == 'native'
  220. - name: Start and enable master api all masters
  221. systemd:
  222. name: "{{ openshift.common.service_type }}-master-api"
  223. enabled: yes
  224. state: started
  225. when:
  226. - openshift.master.cluster_method == 'native'
  227. - inventory_hostname != openshift_master_hosts[0]
  228. register: l_start_result
  229. until: not l_start_result | failed
  230. retries: 1
  231. delay: 60
  232. - name: Dump logs from master-api if it failed
  233. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-api
  234. when:
  235. - l_start_result | failed
  236. - set_fact:
  237. master_api_service_status_changed: "{{ l_start_result | changed }}"
  238. when:
  239. - openshift.master.cluster_method == 'native'
  240. - inventory_hostname != openshift_master_hosts[0]
  241. # A separate wait is required here for native HA since notifies will
  242. # be resolved after all tasks in the role.
  243. - include_tasks: check_master_api_is_ready.yml
  244. when:
  245. - openshift.master.cluster_method == 'native'
  246. - master_api_service_status_changed | bool
  247. - name: Start and enable master controller service
  248. systemd:
  249. name: "{{ openshift.common.service_type }}-master-controllers"
  250. enabled: yes
  251. state: started
  252. when:
  253. - openshift.master.cluster_method == 'native'
  254. register: l_start_result
  255. until: not l_start_result | failed
  256. retries: 1
  257. delay: 60
  258. - name: Dump logs from master-controllers if it failed
  259. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-controllers
  260. when:
  261. - l_start_result | failed
  262. - name: Set fact master_controllers_service_status_changed
  263. set_fact:
  264. master_controllers_service_status_changed: "{{ l_start_result | changed }}"
  265. when:
  266. - openshift.master.cluster_method == 'native'
  267. - name: Install cluster packages
  268. package: name=pcs state=present
  269. when:
  270. - openshift.master.cluster_method == 'pacemaker'
  271. - not openshift.common.is_containerized | bool
  272. register: l_install_result
  273. until: l_install_result | success
  274. - name: Start and enable cluster service
  275. systemd:
  276. name: pcsd
  277. enabled: yes
  278. state: started
  279. when:
  280. - openshift.master.cluster_method == 'pacemaker'
  281. - not openshift.common.is_containerized | bool
  282. - name: Set the cluster user password
  283. shell: echo {{ openshift_master_cluster_password | quote }} | passwd --stdin hacluster
  284. when:
  285. - l_install_result | changed
  286. - name: node bootstrap settings
  287. include_tasks: bootstrap.yml
  288. when: openshift_master_bootstrap_enabled | default(False)