main.yml 10 KB

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