main.yml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  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: Install Master package
  24. package:
  25. name: "{{ openshift.common.service_type }}-master{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }}"
  26. state: present
  27. when: not openshift.common.is_containerized | bool
  28. - name: Pull master image
  29. command: >
  30. docker pull {{ openshift.master.master_image }}:{{ openshift_image_tag }}
  31. register: pull_result
  32. changed_when: "'Downloaded newer image' in pull_result.stdout"
  33. when: openshift.common.is_containerized | bool
  34. - name: Create openshift.common.data_dir
  35. file:
  36. path: "{{ openshift.common.data_dir }}"
  37. state: directory
  38. mode: 0755
  39. owner: root
  40. group: root
  41. when: openshift.common.is_containerized | bool
  42. - name: Reload systemd units
  43. command: systemctl daemon-reload
  44. when: openshift.common.is_containerized | bool and install_result | changed
  45. - name: Re-gather package dependent master facts
  46. openshift_facts:
  47. - name: Create config parent directory if it does not exist
  48. file:
  49. path: "{{ openshift_master_config_dir }}"
  50. state: directory
  51. - name: Create the policy file if it does not already exist
  52. command: >
  53. {{ openshift.common.client_binary }} adm create-bootstrap-policy-file
  54. --filename={{ openshift_master_policy }}
  55. args:
  56. creates: "{{ openshift_master_policy }}"
  57. notify:
  58. - restart master
  59. - restart master api
  60. - restart master controllers
  61. - name: Create the scheduler config
  62. copy:
  63. content: "{{ scheduler_config | to_nice_json }}"
  64. dest: "{{ openshift_master_scheduler_conf }}"
  65. backup: true
  66. notify:
  67. - restart master
  68. - restart master api
  69. - restart master controllers
  70. - name: Install httpd-tools if needed
  71. package: name=httpd-tools state=present
  72. when: (item.kind == 'HTPasswdPasswordIdentityProvider') and
  73. not openshift.common.is_atomic | bool
  74. with_items: "{{ openshift.master.identity_providers }}"
  75. - name: Ensure htpasswd directory exists
  76. file:
  77. path: "{{ item.filename | dirname }}"
  78. state: directory
  79. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  80. with_items: "{{ openshift.master.identity_providers }}"
  81. - name: Create the htpasswd file if needed
  82. template:
  83. dest: "{{ item.filename }}"
  84. src: htpasswd.j2
  85. backup: yes
  86. when: item.kind == 'HTPasswdPasswordIdentityProvider' and openshift.master.manage_htpasswd | bool
  87. with_items: "{{ openshift.master.identity_providers }}"
  88. - name: Ensure htpasswd file exists
  89. copy:
  90. dest: "{{ item.filename }}"
  91. force: no
  92. content: ""
  93. mode: 0600
  94. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  95. with_items: "{{ openshift.master.identity_providers }}"
  96. - name: Create the ldap ca file if needed
  97. copy:
  98. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"
  99. content: "{{ openshift.master.ldap_ca }}"
  100. mode: 0600
  101. backup: yes
  102. when: openshift.master.ldap_ca is defined and item.kind == 'LDAPPasswordIdentityProvider'
  103. with_items: "{{ openshift.master.identity_providers }}"
  104. - name: Create the openid ca file if needed
  105. copy:
  106. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('openid_ca.crt') }}"
  107. content: "{{ openshift.master.openid_ca }}"
  108. mode: 0600
  109. backup: yes
  110. when: openshift.master.openid_ca is defined and item.kind == 'OpenIDIdentityProvider' and 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: openshift.master.request_header_ca is defined and item.kind == 'RequestHeaderIdentityProvider' and item.clientCA | default('') != ''
  119. with_items: "{{ openshift.master.identity_providers }}"
  120. - name: Install the systemd units
  121. include: systemd_units.yml
  122. - name: Create session secrets file
  123. template:
  124. dest: "{{ openshift.master.session_secrets_file }}"
  125. src: sessionSecretsFile.yaml.v1.j2
  126. owner: root
  127. group: root
  128. mode: 0600
  129. when: openshift.master.session_auth_secrets is defined and openshift.master.session_encryption_secrets is defined
  130. notify:
  131. - restart master
  132. - restart master api
  133. - set_fact:
  134. translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1', openshift.common.version, openshift.common.deployment_type) }}"
  135. # TODO: add the validate parameter when there is a validation command to run
  136. - name: Create master config
  137. template:
  138. dest: "{{ openshift_master_config_file }}"
  139. src: master.yaml.v1.j2
  140. backup: true
  141. owner: root
  142. group: root
  143. mode: 0600
  144. notify:
  145. - restart master
  146. - restart master api
  147. - restart master controllers
  148. - include: set_loopback_context.yml
  149. when: openshift.common.version_gte_3_2_or_1_2
  150. # TODO: Master startup can fail when ec2 transparently reallocates the block
  151. # storage, causing etcd writes to temporarily fail. Retry failures blindly just
  152. # once to allow time for this transient condition to to resolve and for systemd
  153. # to restart the master (which will eventually succeed).
  154. #
  155. # https://github.com/coreos/etcd/issues/3864
  156. # https://github.com/openshift/origin/issues/6065
  157. # https://github.com/openshift/origin/issues/6447
  158. - name: Start and enable master
  159. service: name={{ openshift.common.service_type }}-master enabled=yes state=started
  160. when: not openshift_master_ha | bool
  161. register: start_result
  162. until: not start_result | failed
  163. retries: 1
  164. delay: 60
  165. notify: Verify API Server
  166. - name: Check for non-HA master service presence
  167. command: systemctl show {{ openshift.common.service_type }}-master.service
  168. register: master_svc_show
  169. changed_when: false
  170. failed_when: false
  171. - name: Stop and disable non-HA master when running HA
  172. service:
  173. name: "{{ openshift.common.service_type }}-master"
  174. enabled: no
  175. state: stopped
  176. when: openshift_master_ha | bool and master_svc_show.rc == 0 and 'LoadState=not-found' not in master_svc_show.stdout
  177. - set_fact:
  178. master_service_status_changed: "{{ start_result | changed }}"
  179. when: not openshift_master_ha | bool
  180. - name: Mask master service
  181. command: systemctl mask {{ openshift.common.service_type }}-master
  182. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and not openshift.common.is_containerized | bool
  183. - name: Start and enable master api on first master
  184. service:
  185. name: "{{ openshift.common.service_type }}-master-api"
  186. enabled: yes
  187. state: started
  188. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
  189. register: start_result
  190. until: not start_result | failed
  191. retries: 1
  192. delay: 60
  193. - set_fact:
  194. master_api_service_status_changed: "{{ start_result | changed }}"
  195. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
  196. - pause:
  197. seconds: 15
  198. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  199. - name: Start and enable master api all masters
  200. service:
  201. name: "{{ openshift.common.service_type }}-master-api"
  202. enabled: yes
  203. state: started
  204. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
  205. register: start_result
  206. until: not start_result | failed
  207. retries: 1
  208. delay: 60
  209. - set_fact:
  210. master_api_service_status_changed: "{{ start_result | changed }}"
  211. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
  212. # A separate wait is required here for native HA since notifies will
  213. # be resolved after all tasks in the role.
  214. - name: Wait for API to become available
  215. # Using curl here since the uri module requires python-httplib2 and
  216. # wait_for port doesn't provide health information.
  217. command: >
  218. curl --silent
  219. {% if openshift.common.version_gte_3_2_or_1_2 | bool %}
  220. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  221. {% else %}
  222. --cacert {{ openshift.common.config_base }}/master/ca.crt
  223. {% endif %}
  224. {{ openshift.master.api_url }}/healthz/ready
  225. register: api_available_output
  226. until: api_available_output.stdout == 'ok'
  227. retries: 120
  228. delay: 1
  229. run_once: true
  230. changed_when: false
  231. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and master_api_service_status_changed | bool
  232. - name: Start and enable master controller on first master
  233. service:
  234. name: "{{ openshift.common.service_type }}-master-controllers"
  235. enabled: yes
  236. state: started
  237. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
  238. register: start_result
  239. until: not start_result | failed
  240. retries: 1
  241. delay: 60
  242. - pause:
  243. seconds: 15
  244. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  245. - name: Start and enable master controller on all masters
  246. service:
  247. name: "{{ openshift.common.service_type }}-master-controllers"
  248. enabled: yes
  249. state: started
  250. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
  251. register: start_result
  252. until: not start_result | failed
  253. retries: 1
  254. delay: 60
  255. - set_fact:
  256. master_controllers_service_status_changed: "{{ start_result | changed }}"
  257. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  258. - name: Install cluster packages
  259. package: name=pcs state=present
  260. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  261. and not openshift.common.is_containerized | bool
  262. register: install_result
  263. - name: Start and enable cluster service
  264. service: name=pcsd enabled=yes state=started
  265. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  266. and not openshift.common.is_containerized | bool
  267. - name: Set the cluster user password
  268. shell: echo {{ openshift_master_cluster_password | quote }} | passwd --stdin hacluster
  269. when: install_result | changed