main.yml 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  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. - debug: var=openshift_version
  5. - fail:
  6. # Authentication Variable Validation
  7. # TODO: validate the different identity provider kinds as well
  8. - fail:
  9. msg: >
  10. Invalid OAuth grant method: {{ openshift_master_oauth_grant_method }}
  11. when: openshift_master_oauth_grant_method is defined and openshift_master_oauth_grant_method not in openshift_master_valid_grant_methods
  12. # HA Variable Validation
  13. - fail:
  14. msg: "openshift_master_cluster_method must be set to either 'native' or 'pacemaker' for multi-master installations"
  15. 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"]))
  16. - fail:
  17. msg: "'native' high availability is not supported for the requested OpenShift version"
  18. when: openshift_master_ha | bool and openshift_master_cluster_method == "native" and not openshift.common.version_gte_3_1_or_1_1 | bool
  19. - fail:
  20. msg: "openshift_master_cluster_password must be set for multi-master installations"
  21. 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)
  22. - fail:
  23. msg: "Pacemaker based HA is not supported at this time when used with containerized installs"
  24. when: openshift_master_ha | bool and openshift_master_cluster_method == "pacemaker" and openshift.common.is_containerized | bool
  25. - name: Install Master package
  26. action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-master{{ openshift_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} 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_version }}
  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. mode: 0600
  84. backup: yes
  85. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  86. with_items: "{{ openshift.master.identity_providers }}"
  87. - name: Create the ldap ca file if needed
  88. copy:
  89. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"
  90. content: "{{ openshift.master.ldap_ca }}"
  91. mode: 0600
  92. backup: yes
  93. when: openshift.master.ldap_ca is defined and item.kind == 'LDAPPasswordIdentityProvider'
  94. with_items: "{{ openshift.master.identity_providers }}"
  95. - name: Create the openid ca file if needed
  96. copy:
  97. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('openid_ca.crt') }}"
  98. content: "{{ openshift.master.openid_ca }}"
  99. mode: 0600
  100. backup: yes
  101. when: openshift.master.openid_ca is defined and item.kind == 'OpenIDIdentityProvider' and item.ca | default('') != ''
  102. with_items: "{{ openshift.master.identity_providers }}"
  103. - name: Create the request header ca file if needed
  104. copy:
  105. dest: "{{ item.clientCA if 'clientCA' in item and '/' in item.clientCA else openshift_master_config_dir ~ '/' ~ item.clientCA | default('request_header_ca.crt') }}"
  106. content: "{{ openshift.master.request_header_ca }}"
  107. mode: 0600
  108. backup: yes
  109. when: openshift.master.request_header_ca is defined and item.kind == 'RequestHeaderIdentityProvider' and item.clientCA | default('') != ''
  110. with_items: "{{ openshift.master.identity_providers }}"
  111. - name: Install the systemd units
  112. include: systemd_units.yml
  113. - name: Create session secrets file
  114. template:
  115. dest: "{{ openshift.master.session_secrets_file }}"
  116. src: sessionSecretsFile.yaml.v1.j2
  117. owner: root
  118. group: root
  119. mode: 0600
  120. when: openshift.master.session_auth_secrets is defined and openshift.master.session_encryption_secrets is defined
  121. notify:
  122. - restart master
  123. - restart master api
  124. - set_fact:
  125. translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1', openshift.common.version, openshift.common.deployment_type) }}"
  126. # TODO: add the validate parameter when there is a validation command to run
  127. - name: Create master config
  128. template:
  129. dest: "{{ openshift_master_config_file }}"
  130. src: master.yaml.v1.j2
  131. backup: true
  132. owner: root
  133. group: root
  134. mode: 0600
  135. notify:
  136. - restart master
  137. - restart master api
  138. - restart master controllers
  139. - include: set_loopback_context.yml
  140. when: openshift.common.version_gte_3_2_or_1_2
  141. - name: Start and enable master
  142. service: name={{ openshift.common.service_type }}-master enabled=yes state=started
  143. when: not openshift_master_ha | bool
  144. register: start_result
  145. notify: Verify API Server
  146. - name: Stop and disable non HA master when running HA
  147. service: name={{ openshift.common.service_type }}-master enabled=no state=stopped
  148. when: openshift_master_ha | bool
  149. - set_fact:
  150. master_service_status_changed: "{{ start_result | changed }}"
  151. when: not openshift_master_ha | bool
  152. - name: Mask master service
  153. command: systemctl mask {{ openshift.common.service_type }}-master
  154. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and not openshift.common.is_containerized | bool
  155. - name: Start and enable master api
  156. service: name={{ openshift.common.service_type }}-master-api enabled=yes state=started
  157. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  158. register: start_result
  159. - set_fact:
  160. master_api_service_status_changed: "{{ start_result | changed }}"
  161. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  162. # A separate wait is required here for native HA since notifies will
  163. # be resolved after all tasks in the role.
  164. - name: Wait for API to become available
  165. # Using curl here since the uri module requires python-httplib2 and
  166. # wait_for port doesn't provide health information.
  167. command: >
  168. curl --silent --cacert {{ openshift.common.config_base }}/master/ca.crt
  169. {{ openshift.master.api_url }}/healthz/ready
  170. register: api_available_output
  171. until: api_available_output.stdout == 'ok'
  172. retries: 120
  173. delay: 1
  174. changed_when: false
  175. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and master_api_service_status_changed | bool
  176. - name: Start and enable master controller
  177. service: name={{ openshift.common.service_type }}-master-controllers enabled=yes state=started
  178. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  179. register: start_result
  180. - set_fact:
  181. master_controllers_service_status_changed: "{{ start_result | changed }}"
  182. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  183. - name: Install cluster packages
  184. action: "{{ ansible_pkg_mgr }} name=pcs state=present"
  185. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  186. and not openshift.common.is_containerized | bool
  187. register: install_result
  188. - name: Start and enable cluster service
  189. service: name=pcsd enabled=yes state=started
  190. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  191. and not openshift.common.is_containerized | bool
  192. - name: Set the cluster user password
  193. shell: echo {{ openshift_master_cluster_password | quote }} | passwd --stdin hacluster
  194. when: install_result | changed
  195. - name: Lookup default group for ansible_ssh_user
  196. command: "/usr/bin/id -g {{ ansible_ssh_user }}"
  197. changed_when: false
  198. register: _ansible_ssh_user_gid
  199. - set_fact:
  200. client_users: "{{ [ansible_ssh_user, 'root'] | unique }}"
  201. - name: Create the client config dir(s)
  202. file:
  203. path: "~{{ item }}/.kube"
  204. state: directory
  205. mode: 0700
  206. owner: "{{ item }}"
  207. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  208. with_items: "{{ client_users }}"
  209. # TODO: Update this file if the contents of the source file are not present in
  210. # the dest file, will need to make sure to ignore things that could be added
  211. - name: Copy the admin client config(s)
  212. command: cp {{ openshift_master_config_dir }}/admin.kubeconfig ~{{ item }}/.kube/config
  213. args:
  214. creates: ~{{ item }}/.kube/config
  215. with_items: "{{ client_users }}"
  216. - name: Update the permissions on the admin client config(s)
  217. file:
  218. path: "~{{ item }}/.kube/config"
  219. state: file
  220. mode: 0700
  221. owner: "{{ item }}"
  222. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  223. with_items: "{{ client_users }}"