main.yml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357
  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: openshift_master_oauth_grant_method is defined and openshift_master_oauth_grant_method not in openshift_master_valid_grant_methods
  10. # HA Variable Validation
  11. - fail:
  12. msg: "openshift_master_cluster_method must be set to either 'native' or 'pacemaker' for multi-master installations"
  13. when: openshift_master_ha | bool and ((openshift_master_cluster_method is not defined) or (openshift_master_cluster_method is defined and openshift_master_cluster_method not in ["native", "pacemaker"]))
  14. - fail:
  15. msg: "'native' high availability is not supported for the requested OpenShift version"
  16. when: openshift_master_ha | bool and openshift_master_cluster_method == "native" and not openshift.common.version_gte_3_1_or_1_1 | bool
  17. - fail:
  18. msg: "openshift_master_cluster_password must be set for multi-master installations"
  19. when: openshift_master_ha | bool and openshift_master_cluster_method == "pacemaker" and (openshift_master_cluster_password is not defined or not openshift_master_cluster_password)
  20. - fail:
  21. msg: "Pacemaker based HA is not supported at this time when used with containerized installs"
  22. when: openshift_master_ha | bool and openshift_master_cluster_method == "pacemaker" and openshift.common.is_containerized | bool
  23. - name: Open up firewall ports
  24. include: firewall.yml
  25. static: yes
  26. - name: Install Master package
  27. package:
  28. name: "{{ openshift.common.service_type }}-master{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }}"
  29. state: present
  30. when: not openshift.common.is_containerized | bool
  31. - name: Create openshift.common.data_dir
  32. file:
  33. path: "{{ openshift.common.data_dir }}"
  34. state: directory
  35. mode: 0755
  36. owner: root
  37. group: root
  38. when: openshift.common.is_containerized | bool
  39. - name: Reload systemd units
  40. command: systemctl daemon-reload
  41. when: openshift.common.is_containerized | bool and install_result | changed
  42. - name: Re-gather package dependent master facts
  43. openshift_facts:
  44. - name: Create config parent directory if it does not exist
  45. file:
  46. path: "{{ openshift_master_config_dir }}"
  47. state: directory
  48. - name: Create the policy file if it does not already exist
  49. command: >
  50. {{ openshift.common.client_binary }} adm create-bootstrap-policy-file
  51. --filename={{ openshift_master_policy }}
  52. args:
  53. creates: "{{ openshift_master_policy }}"
  54. notify:
  55. - restart master
  56. - restart master api
  57. - restart master controllers
  58. - name: Create the scheduler config
  59. copy:
  60. content: "{{ scheduler_config | to_nice_json }}"
  61. dest: "{{ openshift_master_scheduler_conf }}"
  62. backup: true
  63. notify:
  64. - restart master
  65. - restart master api
  66. - restart master controllers
  67. - name: Install httpd-tools if needed
  68. package: name=httpd-tools state=present
  69. when: (item.kind == 'HTPasswdPasswordIdentityProvider') and
  70. not openshift.common.is_atomic | bool
  71. with_items: "{{ openshift.master.identity_providers }}"
  72. - name: Ensure htpasswd directory exists
  73. file:
  74. path: "{{ item.filename | dirname }}"
  75. state: directory
  76. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  77. with_items: "{{ openshift.master.identity_providers }}"
  78. - name: Create the htpasswd file if needed
  79. template:
  80. dest: "{{ item.filename }}"
  81. src: htpasswd.j2
  82. backup: yes
  83. when: item.kind == 'HTPasswdPasswordIdentityProvider' and openshift.master.manage_htpasswd | bool
  84. with_items: "{{ openshift.master.identity_providers }}"
  85. - name: Ensure htpasswd file exists
  86. copy:
  87. dest: "{{ item.filename }}"
  88. force: no
  89. content: ""
  90. mode: 0600
  91. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  92. with_items: "{{ openshift.master.identity_providers }}"
  93. - name: Create the ldap ca file if needed
  94. copy:
  95. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"
  96. content: "{{ openshift.master.ldap_ca }}"
  97. mode: 0600
  98. backup: yes
  99. when: openshift.master.ldap_ca is defined and 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: openshift.master.openid_ca is defined and item.kind == 'OpenIDIdentityProvider' and item.ca | default('') != ''
  108. with_items: "{{ openshift.master.identity_providers }}"
  109. - name: Create the request header ca file if needed
  110. copy:
  111. dest: "{{ item.clientCA if 'clientCA' in item and '/' in item.clientCA else openshift_master_config_dir ~ '/' ~ item.clientCA | default('request_header_ca.crt') }}"
  112. content: "{{ openshift.master.request_header_ca }}"
  113. mode: 0600
  114. backup: yes
  115. when: openshift.master.request_header_ca is defined and item.kind == 'RequestHeaderIdentityProvider' and item.clientCA | default('') != ''
  116. with_items: "{{ openshift.master.identity_providers }}"
  117. # This is an ugly hack to verify settings are in a file without modifying them with lineinfile.
  118. # The template file will stomp any other settings made.
  119. - block:
  120. - name: check whether our docker-registry setting exists in the env file
  121. command: "awk '/^OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000/' /etc/sysconfig/{{ openshift.common.service_type }}-master"
  122. failed_when: false
  123. changed_when: false
  124. register: already_set
  125. - set_fact:
  126. openshift_push_via_dns: "{{ (openshift_use_dnsmasq | default(true) and openshift.common.version_gte_3_6) or (already_set.stdout is defined and already_set.stdout | match('OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000')) }}"
  127. - name: Set fact of all etcd host IPs
  128. openshift_facts:
  129. role: common
  130. local_facts:
  131. no_proxy_etcd_host_ips: "{{ openshift_no_proxy_etcd_host_ips }}"
  132. - name: Install the systemd units
  133. include: systemd_units.yml
  134. - name: Install Master system container
  135. include: system_container.yml
  136. when: openshift.common.is_containerized | bool and openshift.common.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: openshift.master.session_auth_secrets is defined and openshift.master.session_encryption_secrets is defined
  145. notify:
  146. - restart master
  147. - restart master api
  148. - set_fact:
  149. translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1', openshift.common.version, openshift.common.deployment_type) }}"
  150. # TODO: add the validate parameter when there is a validation command to run
  151. - name: Create master config
  152. template:
  153. dest: "{{ openshift_master_config_file }}"
  154. src: master.yaml.v1.j2
  155. backup: true
  156. owner: root
  157. group: root
  158. mode: 0600
  159. notify:
  160. - restart master
  161. - restart master api
  162. - restart master controllers
  163. - include: set_loopback_context.yml
  164. when: openshift.common.version_gte_3_2_or_1_2
  165. # TODO: Master startup can fail when ec2 transparently reallocates the block
  166. # storage, causing etcd writes to temporarily fail. Retry failures blindly just
  167. # once to allow time for this transient condition to to resolve and for systemd
  168. # to restart the master (which will eventually succeed).
  169. #
  170. # https://github.com/coreos/etcd/issues/3864
  171. # https://github.com/openshift/origin/issues/6065
  172. # https://github.com/openshift/origin/issues/6447
  173. - name: Start and enable master
  174. systemd:
  175. daemon_reload: yes
  176. name: "{{ openshift.common.service_type }}-master"
  177. enabled: yes
  178. state: started
  179. when: not openshift_master_ha | bool
  180. register: start_result
  181. until: not start_result | failed
  182. retries: 1
  183. delay: 60
  184. notify: Verify API Server
  185. - name: Dump logs from master service if it failed
  186. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master
  187. when: start_result | failed
  188. - name: Stop and disable non-HA master when running HA
  189. systemd:
  190. name: "{{ openshift.common.service_type }}-master"
  191. enabled: no
  192. state: stopped
  193. when: openshift_master_ha | bool
  194. register: task_result
  195. failed_when: task_result|failed and 'could not' not in task_result.msg|lower
  196. - set_fact:
  197. master_service_status_changed: "{{ start_result | changed }}"
  198. when: not openshift_master_ha | bool
  199. - name: Mask master service
  200. systemd:
  201. name: "{{ openshift.common.service_type }}-master"
  202. masked: yes
  203. when: >
  204. openshift_master_ha | bool and
  205. openshift.master.cluster_method == 'native' and
  206. not openshift.common.is_containerized | bool
  207. - name: Start and enable master api on first master
  208. systemd:
  209. name: "{{ openshift.common.service_type }}-master-api"
  210. enabled: yes
  211. state: started
  212. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
  213. register: start_result
  214. until: not start_result | failed
  215. retries: 1
  216. delay: 60
  217. - name: Dump logs from master-api if it failed
  218. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-api
  219. when: start_result | failed
  220. - set_fact:
  221. master_api_service_status_changed: "{{ start_result | changed }}"
  222. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
  223. - pause:
  224. seconds: 15
  225. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  226. - name: Start and enable master api all masters
  227. systemd:
  228. name: "{{ openshift.common.service_type }}-master-api"
  229. enabled: yes
  230. state: started
  231. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
  232. register: start_result
  233. until: not start_result | failed
  234. retries: 1
  235. delay: 60
  236. - name: Dump logs from master-api if it failed
  237. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-api
  238. when: start_result | failed
  239. - set_fact:
  240. master_api_service_status_changed: "{{ start_result | changed }}"
  241. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
  242. # A separate wait is required here for native HA since notifies will
  243. # be resolved after all tasks in the role.
  244. - name: Wait for API to become available
  245. # Using curl here since the uri module requires python-httplib2 and
  246. # wait_for port doesn't provide health information.
  247. command: >
  248. curl --silent --tlsv1.2
  249. {% if openshift.common.version_gte_3_2_or_1_2 | bool %}
  250. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  251. {% else %}
  252. --cacert {{ openshift.common.config_base }}/master/ca.crt
  253. {% endif %}
  254. {{ openshift.master.api_url }}/healthz/ready
  255. register: api_available_output
  256. until: api_available_output.stdout == 'ok'
  257. retries: 120
  258. delay: 1
  259. run_once: true
  260. changed_when: false
  261. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and master_api_service_status_changed | bool
  262. - name: Start and enable master controller on first master
  263. systemd:
  264. name: "{{ openshift.common.service_type }}-master-controllers"
  265. enabled: yes
  266. state: started
  267. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
  268. register: start_result
  269. until: not start_result | failed
  270. retries: 1
  271. delay: 60
  272. - name: Dump logs from master-controllers if it failed
  273. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-controllers
  274. when: start_result | failed
  275. - name: Wait for master controller service to start on first master
  276. pause:
  277. seconds: 15
  278. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  279. - name: Start and enable master controller on all masters
  280. systemd:
  281. name: "{{ openshift.common.service_type }}-master-controllers"
  282. enabled: yes
  283. state: started
  284. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
  285. register: start_result
  286. until: not start_result | failed
  287. retries: 1
  288. delay: 60
  289. - name: Dump logs from master-controllers if it failed
  290. command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-controllers
  291. when: start_result | failed
  292. - set_fact:
  293. master_controllers_service_status_changed: "{{ start_result | changed }}"
  294. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  295. - name: Install cluster packages
  296. package: name=pcs state=present
  297. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  298. and not openshift.common.is_containerized | bool
  299. register: install_result
  300. - name: Start and enable cluster service
  301. systemd:
  302. name: pcsd
  303. enabled: yes
  304. state: started
  305. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  306. and not openshift.common.is_containerized | bool
  307. - name: Set the cluster user password
  308. shell: echo {{ openshift_master_cluster_password | quote }} | passwd --stdin hacluster
  309. when: install_result | changed