main.yml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  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. - import_tasks: pre_pull.yml
  12. - name: Open up firewall ports
  13. import_tasks: firewall.yml
  14. - name: Prepare static pod scripts
  15. import_tasks: static_shim.yml
  16. - name: Create r_openshift_master_data_dir
  17. file:
  18. path: "{{ r_openshift_master_data_dir }}"
  19. state: directory
  20. mode: 0755
  21. owner: root
  22. group: root
  23. - import_tasks: registry_auth.yml
  24. - name: Create config parent directory if it does not exist
  25. file:
  26. path: "/etc/origin/master"
  27. state: directory
  28. - name: Create flexvolume directory when on atomic hosts
  29. file:
  30. state: directory
  31. path: "/etc/origin/kubelet-plugins/volume/exec"
  32. mode: '0750'
  33. when: openshift_is_atomic | bool
  34. - name: Flex volume directory on non-atomic host
  35. file:
  36. state: directory
  37. path: "/usr/libexec/kubernetes/kubelet-plugins/volume/exec/"
  38. mode: '0750'
  39. when: not openshift_is_atomic | bool
  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: "/etc/origin/master/{{ item.name }}_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: "/etc/origin/master/{{ item.name }}_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. with_items: "{{ openshift_master_identity_providers }}"
  72. - name: Create the request header ca file if needed
  73. copy:
  74. dest: "/etc/origin/master/{{ item.name }}_request_header_ca.crt"
  75. content: "{{ openshift_master_request_header_ca }}"
  76. mode: 0600
  77. backup: yes
  78. when:
  79. - openshift_master_request_header_ca != l_osm_request_header_none
  80. - item.kind == 'RequestHeaderIdentityProvider'
  81. with_items: "{{ openshift_master_identity_providers }}"
  82. - name: Set fact of all etcd host IPs
  83. openshift_facts:
  84. role: common
  85. local_facts:
  86. no_proxy_etcd_host_ips: "{{ openshift_no_proxy_etcd_host_ips }}"
  87. - name: Create session secrets file
  88. template:
  89. dest: "{{ openshift_master_session_secrets_file }}"
  90. src: sessionSecretsFile.yaml.v1.j2
  91. owner: root
  92. group: root
  93. mode: 0600
  94. - set_fact:
  95. # translate_idps is a custom filter in role lib_utils
  96. translated_identity_providers: "{{ openshift_master_identity_providers | translate_idps('v1') }}"
  97. # TODO: add the validate parameter when there is a validation command to run
  98. - name: Create master config
  99. template:
  100. dest: "{{ openshift_master_config_file }}"
  101. src: master.yaml.v1.j2
  102. backup: true
  103. owner: root
  104. group: root
  105. mode: 0600
  106. - import_tasks: set_loopback_context.yml
  107. - name: Create the master service env file
  108. template:
  109. src: "master.env.j2"
  110. dest: /etc/origin/master/master.env
  111. backup: true
  112. - import_tasks: static.yml
  113. - name: Establish the default bootstrap kubeconfig for masters
  114. copy:
  115. remote_src: true
  116. src: "/etc/origin/master/admin.kubeconfig"
  117. dest: "{{ item }}"
  118. mode: 0600
  119. with_items:
  120. # bootstrap as an admin
  121. - /etc/origin/node/bootstrap.kubeconfig
  122. # copy to this location to bypass initial bootstrap request
  123. - /etc/origin/node/node.kubeconfig
  124. - import_tasks: pre_pull_poll.yml
  125. - name: Start and enable self-hosting node
  126. systemd:
  127. name: "{{ openshift_service_type }}-node"
  128. state: restarted
  129. enabled: yes
  130. register: node_start
  131. ignore_errors: yes
  132. - when: node_start is failed
  133. block:
  134. - name: Get node logs
  135. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  136. register: logs_node
  137. ignore_errors: true
  138. - debug:
  139. msg: "{{ logs_node.stdout_lines }}"
  140. - fail:
  141. msg: Node start failed.
  142. - name: Wait for control plane pods to appear
  143. oc_obj:
  144. state: list
  145. kind: pod
  146. name: "master-{{ item }}-{{ openshift.node.nodename | lower }}"
  147. namespace: kube-system
  148. register: control_plane_pods
  149. until:
  150. - "'results' in control_plane_pods"
  151. - "'results' in control_plane_pods.results"
  152. - control_plane_pods.results.results | length > 0
  153. retries: 60
  154. delay: 5
  155. with_items:
  156. - "{{ 'etcd' if inventory_hostname in groups['oo_etcd_to_config'] else omit }}"
  157. - api
  158. - controllers
  159. ignore_errors: true
  160. - when: control_plane_pods is failed
  161. block:
  162. - name: Check status in the kube-system namespace
  163. command: >
  164. {{ openshift_client_binary }} status --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system
  165. register: control_plane_status
  166. ignore_errors: true
  167. - debug:
  168. msg: "{{ control_plane_status.stdout_lines }}"
  169. - name: Get pods in the kube-system namespace
  170. command: >
  171. {{ openshift_client_binary }} get pods --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system -o wide
  172. register: control_plane_pods_list
  173. ignore_errors: true
  174. - debug:
  175. msg: "{{ control_plane_pods_list.stdout_lines }}"
  176. - name: Get events in the kube-system namespace
  177. command: >
  178. {{ openshift_client_binary }} get events --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system
  179. register: control_plane_events
  180. ignore_errors: true
  181. - debug:
  182. msg: "{{ control_plane_events.stdout_lines }}"
  183. - name: Get node logs
  184. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  185. register: logs_node
  186. ignore_errors: true
  187. - debug:
  188. msg: "{{ logs_node.stdout_lines }}"
  189. - name: Report control plane errors
  190. fail:
  191. msg: Control plane pods didn't come up
  192. - name: Wait for all control plane pods to become ready
  193. oc_obj:
  194. state: list
  195. kind: pod
  196. name: "master-{{ item }}-{{ openshift.node.nodename | lower }}"
  197. namespace: kube-system
  198. register: control_plane_health
  199. until:
  200. - "'results' in control_plane_health"
  201. - "'results' in control_plane_health.results"
  202. - control_plane_health.results.results | length > 0
  203. - "'status' in control_plane_health.results.results[0]"
  204. - "'conditions' in control_plane_health.results.results[0].status"
  205. - control_plane_health.results.results[0].status.conditions | selectattr('type', 'match', '^Ready$') | map(attribute='status') | join | bool == True
  206. retries: 60
  207. delay: 5
  208. with_items:
  209. - "{{ 'etcd' if inventory_hostname in groups['oo_etcd_to_config'] else '' }}"
  210. - api
  211. - controllers
  212. when:
  213. - item != ''
  214. - when: control_plane_health is failed
  215. block:
  216. - debug:
  217. msg: "{{ control_plane_pods_list.stdout_lines }}"
  218. - name: Get events in the kube-system namespace
  219. command: >
  220. {{ openshift_client_binary }} get events --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system
  221. register: control_plane_events
  222. ignore_errors: true
  223. - debug:
  224. msg: "{{ control_plane_events.stdout_lines }}"
  225. - name: Get node logs
  226. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  227. register: logs_node
  228. ignore_errors: true
  229. - debug:
  230. msg: "{{ logs_node.stdout_lines }}"
  231. - name: Get API logs
  232. command: >
  233. /usr/local/bin/master-logs api api
  234. register: control_plane_logs_api
  235. ignore_errors: true
  236. - debug:
  237. msg: "{{ control_plane_logs_api.stdout_lines }}"
  238. - name: Get controllers logs
  239. command: >
  240. /usr/local/bin/master-logs controllers controllers
  241. register: control_plane_logs_controllers
  242. ignore_errors: true
  243. - debug:
  244. msg: "{{ control_plane_logs_controllers.stdout_lines }}"
  245. - name: Get etcd logs
  246. command: >
  247. /usr/local/bin/master-logs etcd etcd
  248. register: control_plane_logs_etcd
  249. when: inventory_hostname in groups['oo_etcd_to_config']
  250. ignore_errors: true
  251. - debug:
  252. msg: "{{ control_plane_logs_controllers.stdout_lines }}"
  253. when: inventory_hostname in groups['oo_etcd_to_config']
  254. - name: Report control plane errors
  255. fail:
  256. msg: Control plane pods didn't pass health check
  257. - import_tasks: check_master_api_is_ready.yml
  258. - name: Remove oc cache to refresh a list of APIs
  259. file:
  260. path: "~/.kube/cache"
  261. state: absent