main.yml 12 KB

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