main.yml 10 KB

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