main.yml 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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_greater_than_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. - name: Set master facts
  21. openshift_facts:
  22. role: master
  23. local_facts:
  24. cluster_method: "{{ openshift_master_cluster_method | default(None) }}"
  25. cluster_hostname: "{{ openshift_master_cluster_hostname | default(None) }}"
  26. cluster_public_hostname: "{{ openshift_master_cluster_public_hostname | default(None) }}"
  27. debug_level: "{{ openshift_master_debug_level | default(openshift.common.debug_level) }}"
  28. api_port: "{{ openshift_master_api_port | default(None) }}"
  29. api_url: "{{ openshift_master_api_url | default(None) }}"
  30. api_use_ssl: "{{ openshift_master_api_use_ssl | default(None) }}"
  31. public_api_url: "{{ openshift_master_public_api_url | default(None) }}"
  32. console_path: "{{ openshift_master_console_path | default(None) }}"
  33. console_port: "{{ openshift_master_console_port | default(None) }}"
  34. console_url: "{{ openshift_master_console_url | default(None) }}"
  35. console_use_ssl: "{{ openshift_master_console_use_ssl | default(None) }}"
  36. public_console_url: "{{ openshift_master_public_console_url | default(None) }}"
  37. etcd_hosts: "{{ openshift_master_etcd_hosts | default(None)}}"
  38. etcd_port: "{{ openshift_master_etcd_port | default(None) }}"
  39. etcd_use_ssl: "{{ openshift_master_etcd_use_ssl | default(None) }}"
  40. etcd_urls: "{{ openshift_master_etcd_urls | default(None) }}"
  41. embedded_etcd: "{{ openshift_master_embedded_etcd | default(None) }}"
  42. embedded_kube: "{{ openshift_master_embedded_kube | default(None) }}"
  43. embedded_dns: "{{ openshift_master_embedded_dns | default(None) }}"
  44. dns_port: "{{ openshift_master_dns_port | default(None) }}"
  45. bind_addr: "{{ openshift_master_bind_addr | default(None) }}"
  46. portal_net: "{{ openshift_master_portal_net | default(None) }}"
  47. session_max_seconds: "{{ openshift_master_session_max_seconds | default(None) }}"
  48. session_name: "{{ openshift_master_session_name | default(None) }}"
  49. session_auth_secrets: "{{ openshift_master_session_auth_secrets | default(None) }}"
  50. session_encryption_secrets: "{{ openshift_master_session_encryption_secrets | default(None) }}"
  51. session_secrets_file: "{{ openshift_master_session_secrets_file | default(None) }}"
  52. access_token_max_seconds: "{{ openshift_master_access_token_max_seconds | default(None) }}"
  53. auth_token_max_seconds: "{{ openshift_master_auth_token_max_seconds | default(None) }}"
  54. identity_providers: "{{ openshift_master_identity_providers | default(None) }}"
  55. registry_url: "{{ oreg_url | default(None) }}"
  56. oauth_grant_method: "{{ openshift_master_oauth_grant_method | default(None) }}"
  57. sdn_cluster_network_cidr: "{{ osm_cluster_network_cidr | default(None) }}"
  58. sdn_host_subnet_length: "{{ osm_host_subnet_length | default(None) }}"
  59. default_subdomain: "{{ osm_default_subdomain | default(None) }}"
  60. custom_cors_origins: "{{ osm_custom_cors_origins | default(None) }}"
  61. default_node_selector: "{{ osm_default_node_selector | default(None) }}"
  62. project_request_message: "{{ osm_project_request_message | default(None) }}"
  63. project_request_template: "{{ osm_project_request_template | default(None) }}"
  64. mcs_allocator_range: "{{ osm_mcs_allocator_range | default(None) }}"
  65. mcs_labels_per_project: "{{ osm_mcs_labels_per_project | default(None) }}"
  66. uid_allocator_range: "{{ osm_uid_allocator_range | default(None) }}"
  67. router_selector: "{{ openshift_router_selector | default(None) }}"
  68. registry_selector: "{{ openshift_registry_selector | default(None) }}"
  69. api_server_args: "{{ osm_api_server_args | default(None) }}"
  70. controller_args: "{{ osm_controller_args | default(None) }}"
  71. infra_nodes: "{{ num_infra | default(None) }}"
  72. disabled_features: "{{ osm_disabled_features | default(None) }}"
  73. master_count: "{{ openshift_master_count | default(None) }}"
  74. controller_lease_ttl: "{{ osm_controller_lease_ttl | default(None) }}"
  75. - name: Install Master package
  76. yum: pkg={{ openshift.common.service_type }}-master{{ openshift_version }} state=present
  77. when: ansible_pkg_mgr == "yum"
  78. register: install_result
  79. - name: Install Master package
  80. dnf: pkg={{ openshift.common.service_type }}-master{{ openshift_version }} state=present
  81. when: ansible_pkg_mgr == "dnf"
  82. register: install_result
  83. # TODO: These values need to be configurable
  84. - name: Set dns facts
  85. openshift_facts:
  86. role: dns
  87. local_facts:
  88. ip: "{{ openshift_master_cluster_vip | default(openshift.common.ip, true) | default(None) }}"
  89. domain: cluster.local
  90. when: openshift.master.embedded_dns
  91. - name: Create config parent directory if it does not exist
  92. file:
  93. path: "{{ openshift_master_config_dir }}"
  94. state: directory
  95. - name: Create the policy file if it does not already exist
  96. command: >
  97. {{ openshift.common.admin_binary }} create-bootstrap-policy-file
  98. --filename={{ openshift_master_policy }}
  99. args:
  100. creates: "{{ openshift_master_policy }}"
  101. notify:
  102. - restart master
  103. - restart master api
  104. - restart master controllers
  105. - name: Create the scheduler config
  106. template:
  107. dest: "{{ openshift_master_scheduler_conf }}"
  108. src: scheduler.json.j2
  109. backup: true
  110. notify:
  111. - restart master
  112. - restart master api
  113. - restart master controllers
  114. - name: Install httpd-tools if needed
  115. yum: pkg=httpd-tools state=present
  116. when: (ansible_pkg_mgr == "yum") and (item.kind == 'HTPasswdPasswordIdentityProvider')
  117. with_items: openshift.master.identity_providers
  118. - name: Install httpd-tools if needed
  119. dnf: pkg=httpd-tools state=present
  120. when: (ansible_pkg_mgr == "dnf") and (item.kind == 'HTPasswdPasswordIdentityProvider')
  121. with_items: openshift.master.identity_providers
  122. - name: Ensure htpasswd directory exists
  123. file:
  124. path: "{{ item.filename | dirname }}"
  125. state: directory
  126. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  127. with_items: openshift.master.identity_providers
  128. - name: Create the htpasswd file if needed
  129. copy:
  130. dest: "{{ item.filename }}"
  131. content: ""
  132. mode: 0600
  133. force: no
  134. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  135. with_items: openshift.master.identity_providers
  136. # workaround for missing systemd unit files for controllers/api
  137. - name: Create the api service file
  138. template:
  139. src: atomic-openshift-master-api.service.j2
  140. dest: /usr/lib/systemd/system/{{ openshift.common.service_type }}-master-api.service
  141. force: no
  142. when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
  143. - name: Create the controllers service file
  144. template:
  145. src: atomic-openshift-master-controllers.service.j2
  146. dest: /usr/lib/systemd/system/{{ openshift.common.service_type }}-master-controllers.service
  147. force: no
  148. when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
  149. - name: Create the api env file
  150. template:
  151. src: atomic-openshift-master-api.j2
  152. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  153. force: no
  154. when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
  155. - name: Create the controllers env file
  156. template:
  157. src: atomic-openshift-master-controllers.j2
  158. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  159. force: no
  160. when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
  161. - command: systemctl daemon-reload
  162. when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
  163. # end workaround for missing systemd unit files
  164. - name: Create session secrets file
  165. template:
  166. dest: "{{ openshift.master.session_secrets_file }}"
  167. src: sessionSecretsFile.yaml.v1.j2
  168. force: no
  169. notify:
  170. - restart master
  171. - restart master api
  172. - set_fact:
  173. translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1') }}"
  174. # TODO: add the validate parameter when there is a validation command to run
  175. - name: Create master config
  176. template:
  177. dest: "{{ openshift_master_config_file }}"
  178. src: master.yaml.v1.j2
  179. backup: true
  180. notify:
  181. - restart master
  182. - restart master api
  183. - restart master controllers
  184. - name: Configure master settings
  185. lineinfile:
  186. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master
  187. regexp: "{{ item.regex }}"
  188. line: "{{ item.line }}"
  189. create: yes
  190. with_items:
  191. - regex: '^OPTIONS='
  192. line: "OPTIONS=--loglevel={{ openshift.master.debug_level }}"
  193. - regex: '^CONFIG_FILE='
  194. line: "CONFIG_FILE={{ openshift_master_config_file }}"
  195. notify:
  196. - restart master
  197. - name: Configure master api settings
  198. lineinfile:
  199. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-api
  200. regexp: "{{ item.regex }}"
  201. line: "{{ item.line }}"
  202. with_items:
  203. - regex: '^OPTIONS='
  204. line: "OPTIONS=--loglevel={{ openshift.master.debug_level }} --listen=https://0.0.0.0:8443 --master=https://{{ openshift.common.ip }}:8443"
  205. - regex: '^CONFIG_FILE='
  206. line: "CONFIG_FILE={{ openshift_master_config_file }}"
  207. when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
  208. notify:
  209. - restart master api
  210. - name: Configure master controller settings
  211. lineinfile:
  212. dest: /etc/sysconfig/{{ openshift.common.service_type }}-master-controllers
  213. regexp: "{{ item.regex }}"
  214. line: "{{ item.line }}"
  215. with_items:
  216. - regex: '^OPTIONS='
  217. line: "OPTIONS=--loglevel={{ openshift.master.debug_level }} --listen=https://0.0.0.0:8444"
  218. - regex: '^CONFIG_FILE='
  219. line: "CONFIG_FILE={{ openshift_master_config_file }}"
  220. when: openshift_master_ha | bool and openshift_master_cluster_method == "native"
  221. notify:
  222. - restart master controllers
  223. - name: Start and enable master
  224. service: name={{ openshift.common.service_type }}-master enabled=yes state=started
  225. when: not openshift_master_ha | bool
  226. register: start_result
  227. - set_fact:
  228. master_service_status_changed = start_result | changed
  229. when: not openshift_master_ha | bool
  230. - name: Start and enable master api
  231. service: name={{ openshift.common.service_type }}-master-api enabled=yes state=started
  232. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  233. register: start_result
  234. - set_fact:
  235. master_api_service_status_changed = start_result | changed
  236. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  237. # TODO: fix the ugly workaround of setting ignore_errors
  238. # the controllers service tries to start even if it is already started
  239. - name: Start and enable master controller
  240. service: name={{ openshift.common.service_type }}-master-controllers enabled=yes state=started
  241. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  242. register: start_result
  243. ignore_errors: yes
  244. - set_fact:
  245. master_controllers_service_status_changed = start_result | changed
  246. when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
  247. - name: Install cluster packages
  248. yum: pkg=pcs state=present
  249. when: (ansible_pkg_mgr == "yum") and openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  250. register: install_result
  251. - name: Install cluster packages
  252. dnf: pkg=pcs state=present
  253. when: (ansible_pkg_mgr == "dnf") and openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  254. register: install_result
  255. - name: Start and enable cluster service
  256. service: name=pcsd enabled=yes state=started
  257. when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
  258. - name: Set the cluster user password
  259. shell: echo {{ openshift_master_cluster_password | quote }} | passwd --stdin hacluster
  260. when: install_result | changed
  261. - name: Lookup default group for ansible_ssh_user
  262. command: "/usr/bin/id -g {{ ansible_ssh_user }}"
  263. register: _ansible_ssh_user_gid
  264. - name: Create the client config dir(s)
  265. file:
  266. path: "~{{ item }}/.kube"
  267. state: directory
  268. mode: 0700
  269. owner: "{{ item }}"
  270. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  271. with_items:
  272. - root
  273. - "{{ ansible_ssh_user }}"
  274. # TODO: Update this file if the contents of the source file are not present in
  275. # the dest file, will need to make sure to ignore things that could be added
  276. - name: Copy the admin client config(s)
  277. command: cp {{ openshift_master_config_dir }}/admin.kubeconfig ~{{ item }}/.kube/config
  278. args:
  279. creates: ~{{ item }}/.kube/config
  280. with_items:
  281. - root
  282. - "{{ ansible_ssh_user }}"
  283. - name: Update the permissions on the admin client config(s)
  284. file:
  285. path: "~{{ item }}/.kube/config"
  286. state: file
  287. mode: 0700
  288. owner: "{{ item }}"
  289. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  290. with_items:
  291. - root
  292. - "{{ ansible_ssh_user }}"