main.yml 10 KB

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