main.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  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. when: openshift.common.is_containerized | bool
  30. - name: Create openshift.common.data_dir
  31. file:
  32. path: "{{ openshift.common.data_dir }}"
  33. state: directory
  34. mode: 0755
  35. owner: root
  36. group: root
  37. when: openshift.common.is_containerized | bool
  38. - name: Reload systemd units
  39. command: systemctl daemon-reload
  40. when: openshift.common.is_containerized | bool and install_result | changed
  41. - name: Re-gather package dependent master facts
  42. openshift_facts:
  43. - name: Create config parent directory if it does not exist
  44. file:
  45. path: "{{ openshift_master_config_dir }}"
  46. state: directory
  47. - name: Create the policy file if it does not already exist
  48. command: >
  49. {{ openshift.common.admin_binary }} create-bootstrap-policy-file
  50. --filename={{ openshift_master_policy }}
  51. args:
  52. creates: "{{ openshift_master_policy }}"
  53. notify:
  54. - restart master
  55. - restart master api
  56. - restart master controllers
  57. - name: Create the scheduler config
  58. copy:
  59. content: "{{ scheduler_config | to_nice_json }}"
  60. dest: "{{ openshift_master_scheduler_conf }}"
  61. backup: true
  62. notify:
  63. - restart master
  64. - restart master api
  65. - restart master controllers
  66. - name: Install httpd-tools if needed
  67. action: "{{ ansible_pkg_mgr }} name=httpd-tools state=present"
  68. when: (item.kind == 'HTPasswdPasswordIdentityProvider') and
  69. not openshift.common.is_atomic | bool
  70. with_items: "{{ openshift.master.identity_providers }}"
  71. - name: Ensure htpasswd directory exists
  72. file:
  73. path: "{{ item.filename | dirname }}"
  74. state: directory
  75. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  76. with_items: "{{ openshift.master.identity_providers }}"
  77. - name: Create the htpasswd file if needed
  78. template:
  79. dest: "{{ item.filename }}"
  80. src: htpasswd.j2
  81. backup: yes
  82. when: item.kind == 'HTPasswdPasswordIdentityProvider' and openshift.master.manage_htpasswd | bool
  83. with_items: "{{ openshift.master.identity_providers }}"
  84. - name: Ensure htpasswd file exists
  85. copy:
  86. dest: "{{ item.filename }}"
  87. force: no
  88. content: ""
  89. mode: 0600
  90. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  91. with_items: "{{ openshift.master.identity_providers }}"
  92. - name: Create the ldap ca file if needed
  93. copy:
  94. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"
  95. content: "{{ openshift.master.ldap_ca }}"
  96. mode: 0600
  97. backup: yes
  98. when: openshift.master.ldap_ca is defined and item.kind == 'LDAPPasswordIdentityProvider'
  99. with_items: "{{ openshift.master.identity_providers }}"
  100. - name: Create the openid ca file if needed
  101. copy:
  102. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('openid_ca.crt') }}"
  103. content: "{{ openshift.master.openid_ca }}"
  104. mode: 0600
  105. backup: yes
  106. when: openshift.master.openid_ca is defined and item.kind == 'OpenIDIdentityProvider' and item.ca | default('') != ''
  107. with_items: "{{ openshift.master.identity_providers }}"
  108. - name: Create the request header ca file if needed
  109. copy:
  110. dest: "{{ item.clientCA if 'clientCA' in item and '/' in item.clientCA else openshift_master_config_dir ~ '/' ~ item.clientCA | default('request_header_ca.crt') }}"
  111. content: "{{ openshift.master.request_header_ca }}"
  112. mode: 0600
  113. backup: yes
  114. when: openshift.master.request_header_ca is defined and item.kind == 'RequestHeaderIdentityProvider' and item.clientCA | default('') != ''
  115. with_items: "{{ openshift.master.identity_providers }}"
  116. - name: Install the systemd units
  117. include: systemd_units.yml
  118. - name: Create session secrets file
  119. template:
  120. dest: "{{ openshift.master.session_secrets_file }}"
  121. src: sessionSecretsFile.yaml.v1.j2
  122. owner: root
  123. group: root
  124. mode: 0600
  125. when: openshift.master.session_auth_secrets is defined and openshift.master.session_encryption_secrets is defined
  126. notify:
  127. - restart master
  128. - restart master api
  129. - set_fact:
  130. translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1', openshift.common.version, openshift.common.deployment_type) }}"
  131. # TODO: add the validate parameter when there is a validation command to run
  132. - name: Create master config
  133. template:
  134. dest: "{{ openshift_master_config_file }}"
  135. src: master.yaml.v1.j2
  136. backup: true
  137. owner: root
  138. group: root
  139. mode: 0600
  140. notify:
  141. - restart master
  142. - restart master api
  143. - restart master controllers
  144. - include: set_loopback_context.yml
  145. when: openshift.common.version_gte_3_2_or_1_2
  146. - name: Start and enable master
  147. service: name={{ openshift.common.service_type }}-master enabled=yes state=started
  148. when: not openshift_master_ha | bool
  149. register: start_result
  150. notify: Verify API Server
  151. - name: Check for non-HA master service presence
  152. command: systemctl show {{ openshift.common.service_type }}-master.service
  153. register: master_svc_show
  154. changed_when: false
  155. - name: Stop and disable non-HA master when running HA
  156. service: name={{ openshift.common.service_type }}-master enabled=no state=stopped
  157. when: openshift_master_ha | bool and 'LoadState=not-found' not in master_svc_show.stdout
  158. - set_fact:
  159. master_service_status_changed: "{{ start_result | changed }}"
  160. when: not openshift_master_ha | bool
  161. - name: Mask master service
  162. command: systemctl mask {{ openshift.common.service_type }}-master
  163. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and not openshift.common.is_containerized | bool
  164. - name: Start and enable master api
  165. service: name={{ openshift.common.service_type }}-master-api enabled=yes state=started
  166. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  167. register: start_result
  168. - set_fact:
  169. master_api_service_status_changed: "{{ start_result | changed }}"
  170. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  171. # A separate wait is required here for native HA since notifies will
  172. # be resolved after all tasks in the role.
  173. - name: Wait for API to become available
  174. # Using curl here since the uri module requires python-httplib2 and
  175. # wait_for port doesn't provide health information.
  176. command: >
  177. curl --silent --cacert {{ openshift.common.config_base }}/master/ca.crt
  178. {{ openshift.master.api_url }}/healthz/ready
  179. register: api_available_output
  180. until: api_available_output.stdout == 'ok'
  181. retries: 120
  182. delay: 1
  183. changed_when: false
  184. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and master_api_service_status_changed | bool
  185. - name: Start and enable master controller
  186. service: name={{ openshift.common.service_type }}-master-controllers enabled=yes state=started
  187. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  188. register: start_result
  189. - set_fact:
  190. master_controllers_service_status_changed: "{{ start_result | changed }}"
  191. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  192. - name: Install cluster packages
  193. action: "{{ ansible_pkg_mgr }} name=pcs state=present"
  194. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  195. and not openshift.common.is_containerized | bool
  196. register: install_result
  197. - name: Start and enable cluster service
  198. service: name=pcsd enabled=yes state=started
  199. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  200. and not openshift.common.is_containerized | bool
  201. - name: Set the cluster user password
  202. shell: echo {{ openshift_master_cluster_password | quote }} | passwd --stdin hacluster
  203. when: install_result | changed
  204. - name: Lookup default group for ansible_ssh_user
  205. command: "/usr/bin/id -g {{ ansible_ssh_user }}"
  206. changed_when: false
  207. register: _ansible_ssh_user_gid
  208. - set_fact:
  209. client_users: "{{ [ansible_ssh_user, 'root'] | unique }}"
  210. - name: Create the client config dir(s)
  211. file:
  212. path: "~{{ item }}/.kube"
  213. state: directory
  214. mode: 0700
  215. owner: "{{ item }}"
  216. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  217. with_items: "{{ client_users }}"
  218. # TODO: Update this file if the contents of the source file are not present in
  219. # the dest file, will need to make sure to ignore things that could be added
  220. - name: Copy the admin client config(s)
  221. command: cp {{ openshift_master_config_dir }}/admin.kubeconfig ~{{ item }}/.kube/config
  222. args:
  223. creates: ~{{ item }}/.kube/config
  224. with_items: "{{ client_users }}"
  225. - name: Update the permissions on the admin client config(s)
  226. file:
  227. path: "~{{ item }}/.kube/config"
  228. state: file
  229. mode: 0700
  230. owner: "{{ item }}"
  231. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  232. with_items: "{{ client_users }}"