main.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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. - name: Start and enable master
  149. service: name={{ openshift.common.service_type }}-master enabled=yes state=started
  150. when: not openshift_master_ha | bool
  151. register: start_result
  152. notify: Verify API Server
  153. - name: Check for non-HA master service presence
  154. command: systemctl show {{ openshift.common.service_type }}-master.service
  155. register: master_svc_show
  156. changed_when: false
  157. - name: Stop and disable non-HA master when running HA
  158. service:
  159. name: "{{ openshift.common.service_type }}-master"
  160. enabled: no
  161. state: stopped
  162. when: openshift_master_ha | bool and 'LoadState=not-found' not in master_svc_show.stdout
  163. - set_fact:
  164. master_service_status_changed: "{{ start_result | changed }}"
  165. when: not openshift_master_ha | bool
  166. - name: Mask master service
  167. command: systemctl mask {{ openshift.common.service_type }}-master
  168. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and not openshift.common.is_containerized | bool
  169. - name: Start and enable master api on first master
  170. service:
  171. name: "{{ openshift.common.service_type }}-master-api"
  172. enabled: yes
  173. state: started
  174. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
  175. register: start_result
  176. - pause:
  177. seconds: 15
  178. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  179. - name: Start and enable master api all masters
  180. service:
  181. name: "{{ openshift.common.service_type }}-master-api"
  182. enabled: yes
  183. state: started
  184. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
  185. register: start_result
  186. - set_fact:
  187. master_api_service_status_changed: "{{ start_result | changed }}"
  188. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  189. # A separate wait is required here for native HA since notifies will
  190. # be resolved after all tasks in the role.
  191. - name: Wait for API to become available
  192. # Using curl here since the uri module requires python-httplib2 and
  193. # wait_for port doesn't provide health information.
  194. command: >
  195. curl --silent
  196. {% if openshift.common.version_gte_3_2_or_1_2 | bool %}
  197. --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
  198. {% else %}
  199. --cacert {{ openshift.common.config_base }}/master/ca.crt
  200. {% endif %}
  201. {{ openshift.master.api_url }}/healthz/ready
  202. register: api_available_output
  203. until: api_available_output.stdout == 'ok'
  204. retries: 120
  205. delay: 1
  206. run_once: true
  207. changed_when: false
  208. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and master_api_service_status_changed | bool
  209. - name: Start and enable master controller on first master
  210. service:
  211. name: "{{ openshift.common.service_type }}-master-controllers"
  212. enabled: yes
  213. state: started
  214. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
  215. register: start_result
  216. - pause:
  217. seconds: 15
  218. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  219. - name: Start and enable master controller on all masters
  220. service:
  221. name: "{{ openshift.common.service_type }}-master-controllers"
  222. enabled: yes
  223. state: started
  224. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
  225. register: start_result
  226. - set_fact:
  227. master_controllers_service_status_changed: "{{ start_result | changed }}"
  228. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  229. - name: Install cluster packages
  230. action: "{{ ansible_pkg_mgr }} name=pcs state=present"
  231. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  232. and not openshift.common.is_containerized | bool
  233. register: install_result
  234. - name: Start and enable cluster service
  235. service: name=pcsd enabled=yes state=started
  236. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  237. and not openshift.common.is_containerized | bool
  238. - name: Set the cluster user password
  239. shell: echo {{ openshift_master_cluster_password | quote }} | passwd --stdin hacluster
  240. when: install_result | changed