main.yml 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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:
  10. - openshift_master_oauth_grant_method not in openshift_master_valid_grant_methods
  11. - name: Check that origin image is present
  12. command: 'docker images -q "{{ osm_image }}"'
  13. register: control_plane_image
  14. # This task runs async to save time while the master is being configured
  15. - name: Pre-pull Origin image
  16. docker_image:
  17. name: "{{ osm_image }}"
  18. environment:
  19. NO_PROXY: "{{ openshift.common.no_proxy | default('') }}"
  20. when: control_plane_image.stdout_lines == []
  21. # 10 minutes to pull the image
  22. async: 600
  23. poll: 0
  24. register: image_prepull
  25. - name: Open up firewall ports
  26. import_tasks: firewall.yml
  27. - name: Prepare static pod scripts
  28. import_tasks: static_shim.yml
  29. - name: Create r_openshift_master_data_dir
  30. file:
  31. path: "{{ r_openshift_master_data_dir }}"
  32. state: directory
  33. mode: 0755
  34. owner: root
  35. group: root
  36. - name: Create config parent directory if it does not exist
  37. file:
  38. path: "/etc/origin/master"
  39. state: directory
  40. - name: Create the policy file if it does not already exist
  41. command: >
  42. {{ openshift_client_binary }} adm create-bootstrap-policy-file
  43. --filename={{ openshift_master_policy }}
  44. args:
  45. creates: "{{ openshift_master_policy }}"
  46. - name: Create the scheduler config
  47. copy:
  48. content: "{{ scheduler_config | to_nice_json }}"
  49. dest: "{{ openshift_master_scheduler_conf }}"
  50. backup: true
  51. - import_tasks: htpass_provider.yml
  52. - name: Create the ldap ca file if needed
  53. copy:
  54. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else '/etc/origin/master/' ~ item.ca | default('ldap_ca.crt') }}"
  55. content: "{{ openshift.master.ldap_ca }}"
  56. mode: 0600
  57. backup: yes
  58. when:
  59. - openshift.master.ldap_ca is defined
  60. - item.kind == 'LDAPPasswordIdentityProvider'
  61. with_items: "{{ openshift_master_identity_providers }}"
  62. - name: Create the openid ca file if needed
  63. copy:
  64. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else '/etc/origin/master/' ~ item.ca | default('openid_ca.crt') }}"
  65. content: "{{ openshift.master.openid_ca }}"
  66. mode: 0600
  67. backup: yes
  68. when:
  69. - openshift.master.openid_ca is defined
  70. - item.kind == 'OpenIDIdentityProvider'
  71. - item.ca | default('') != ''
  72. with_items: "{{ openshift_master_identity_providers }}"
  73. - name: Create the request header ca file if needed
  74. copy:
  75. dest: "{{ item.clientCA if 'clientCA' in item and '/' in item.clientCA else '/etc/origin/master/' ~ item.clientCA | default('request_header_ca.crt') }}"
  76. content: "{{ openshift_master_request_header_ca }}"
  77. mode: 0600
  78. backup: yes
  79. when:
  80. - openshift_master_request_header_ca != l_osm_request_header_none
  81. - item.kind == 'RequestHeaderIdentityProvider'
  82. - item.clientCA | default('') != ''
  83. with_items: "{{ openshift_master_identity_providers }}"
  84. - name: Set fact of all etcd host IPs
  85. openshift_facts:
  86. role: common
  87. local_facts:
  88. no_proxy_etcd_host_ips: "{{ openshift_no_proxy_etcd_host_ips }}"
  89. - name: Create session secrets file
  90. template:
  91. dest: "{{ openshift_master_session_secrets_file }}"
  92. src: sessionSecretsFile.yaml.v1.j2
  93. owner: root
  94. group: root
  95. mode: 0600
  96. - set_fact:
  97. # translate_idps is a custom filter in role lib_utils
  98. translated_identity_providers: "{{ openshift_master_identity_providers | translate_idps('v1') }}"
  99. # TODO: add the validate parameter when there is a validation command to run
  100. - name: Create master config
  101. template:
  102. dest: "{{ openshift_master_config_file }}"
  103. src: master.yaml.v1.j2
  104. backup: true
  105. owner: root
  106. group: root
  107. mode: 0600
  108. - import_tasks: set_loopback_context.yml
  109. - name: Create the master service env file
  110. template:
  111. src: "master.env.j2"
  112. dest: /etc/origin/master/master.env
  113. backup: true
  114. - import_tasks: static.yml
  115. - name: Establish the default bootstrap kubeconfig for masters
  116. copy:
  117. remote_src: true
  118. src: "/etc/origin/master/admin.kubeconfig"
  119. dest: "{{ item }}"
  120. mode: 0600
  121. with_items:
  122. # bootstrap as an admin
  123. - /etc/origin/node/bootstrap.kubeconfig
  124. # copy to this location to bypass initial bootstrap request
  125. - /etc/origin/node/node.kubeconfig
  126. - name: Check status of control plane image pre-pull
  127. async_status:
  128. jid: "{{ image_prepull.ansible_job_id }}"
  129. register: job_result
  130. until: job_result.finished
  131. when: control_plane_image.stdout_lines == []
  132. retries: 20
  133. delay: 30
  134. failed_when: false
  135. - name: Check status of etcd image pre-pull
  136. async_status:
  137. jid: "{{ etcd_prepull.ansible_job_id }}"
  138. register: job_result
  139. until: job_result.finished
  140. when:
  141. - etcd_image_exists is defined
  142. - "'stdout_lines' in etcd_image_exists"
  143. - etcd_image_exists.stdout_lines == []
  144. retries: 20
  145. delay: 30
  146. failed_when: false
  147. - name: Start and enable self-hosting node
  148. systemd:
  149. name: "{{ openshift_service_type }}-node"
  150. state: restarted
  151. enabled: yes
  152. register: node_start
  153. ignore_errors: yes
  154. - when: node_start is failed
  155. block:
  156. - name: Get node logs
  157. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  158. register: logs_node
  159. ignore_errors: true
  160. - debug:
  161. msg: "{{ logs_node.stdout_lines }}"
  162. - fail:
  163. msg: Node start failed.
  164. - name: Wait for control plane pods to appear
  165. oc_obj:
  166. state: list
  167. kind: pod
  168. name: "master-{{ item }}-{{ openshift.node.nodename | lower }}"
  169. namespace: kube-system
  170. register: control_plane_pods
  171. until:
  172. - "'results' in control_plane_pods"
  173. - "'results' in control_plane_pods.results"
  174. - control_plane_pods.results.results | length > 0
  175. retries: 60
  176. delay: 5
  177. with_items:
  178. - "{{ 'etcd' if inventory_hostname in groups['oo_etcd_to_config'] else omit }}"
  179. - api
  180. - controllers
  181. ignore_errors: true
  182. - when: control_plane_pods is failed
  183. block:
  184. - name: Check status in the kube-system namespace
  185. command: >
  186. {{ openshift_client_binary }} status --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system
  187. register: control_plane_status
  188. ignore_errors: true
  189. - debug:
  190. msg: "{{ control_plane_status.stdout_lines }}"
  191. - name: Get pods in the kube-system namespace
  192. command: >
  193. {{ openshift_client_binary }} get pods --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system -o wide
  194. register: control_plane_pods_list
  195. ignore_errors: true
  196. - debug:
  197. msg: "{{ control_plane_pods_list.stdout_lines }}"
  198. - name: Get events in the kube-system namespace
  199. command: >
  200. {{ openshift_client_binary }} get events --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system
  201. register: control_plane_events
  202. ignore_errors: true
  203. - debug:
  204. msg: "{{ control_plane_events.stdout_lines }}"
  205. - name: Get node logs
  206. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  207. register: logs_node
  208. ignore_errors: true
  209. - debug:
  210. msg: "{{ logs_node.stdout_lines }}"
  211. - name: Report control plane errors
  212. fail:
  213. msg: Control plane pods didn't come up
  214. - name: Wait for all control plane pods to become ready
  215. oc_obj:
  216. state: list
  217. kind: pod
  218. name: "master-{{ item }}-{{ openshift.node.nodename | lower }}"
  219. namespace: kube-system
  220. register: control_plane_health
  221. until:
  222. - "'results' in control_plane_health"
  223. - "'results' in control_plane_health.results"
  224. - control_plane_health.results.results | length > 0
  225. - "'status' in control_plane_health.results.results[0]"
  226. - "'conditions' in control_plane_health.results.results[0].status"
  227. - control_plane_health.results.results[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
  228. retries: 60
  229. delay: 5
  230. with_items:
  231. - "{{ 'etcd' if inventory_hostname in groups['oo_etcd_to_config'] else '' }}"
  232. - api
  233. - controllers
  234. when:
  235. - item != ''
  236. - when: control_plane_health is failed
  237. block:
  238. - debug:
  239. msg: "{{ control_plane_pods_list.stdout_lines }}"
  240. - name: Get events in the kube-system namespace
  241. command: >
  242. {{ openshift_client_binary }} get events --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system
  243. register: control_plane_events
  244. ignore_errors: true
  245. - debug:
  246. msg: "{{ control_plane_events.stdout_lines }}"
  247. - name: Get node logs
  248. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  249. register: logs_node
  250. ignore_errors: true
  251. - debug:
  252. msg: "{{ logs_node.stdout_lines }}"
  253. - name: Get API logs
  254. command: >
  255. /usr/local/bin/master-logs api api
  256. register: control_plane_logs_api
  257. ignore_errors: true
  258. - debug:
  259. msg: "{{ control_plane_logs_api.stdout_lines }}"
  260. - name: Get controllers logs
  261. command: >
  262. /usr/local/bin/master-logs controllers controllers
  263. register: control_plane_logs_controllers
  264. ignore_errors: true
  265. - debug:
  266. msg: "{{ control_plane_logs_controllers.stdout_lines }}"
  267. - name: Get etcd logs
  268. command: >
  269. /usr/local/bin/master-logs etcd etcd
  270. register: control_plane_logs_etcd
  271. when: inventory_hostname in groups['oo_etcd_to_config']
  272. ignore_errors: true
  273. - debug:
  274. msg: "{{ control_plane_logs_controllers.stdout_lines }}"
  275. when: inventory_hostname in groups['oo_etcd_to_config']
  276. - name: Report control plane errors
  277. fail:
  278. msg: Control plane pods didn't pass health check
  279. - name: Wait for Openshift APIs to register themselves
  280. command: >
  281. {{ openshift_client_binary }} get --raw /apis/{{ item }}/v1
  282. register: openshift_apis
  283. until: openshift_apis.rc == 0
  284. with_items: "{{ l_core_api_list }}"
  285. retries: 60
  286. delay: 5
  287. - name: Remove oc cache to refresh a list of APIs
  288. file:
  289. path: "~/.kube/cache"
  290. state: absent