main.yml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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: 10
  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: 30
  133. - name: Start and enable self-hosting node
  134. systemd:
  135. name: "{{ openshift_service_type }}-node"
  136. state: restarted
  137. enabled: yes
  138. register: node_start
  139. ignore_errors: yes
  140. - when: node_start is failed
  141. block:
  142. - name: Get node logs
  143. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  144. register: logs_node
  145. ignore_errors: true
  146. - debug:
  147. msg: "{{ logs_node.stdout_lines }}"
  148. - fail:
  149. msg: Node start failed.
  150. - name: Verify that the control plane is running
  151. command: >
  152. curl -k {{ openshift.master.api_url }}/healthz/ready
  153. args:
  154. # Disables the following warning:
  155. # Consider using get_url or uri module rather than running curl
  156. warn: no
  157. register: control_plane_health
  158. until: control_plane_health.stdout == 'ok'
  159. retries: 60
  160. delay: 5
  161. changed_when: false
  162. # Ignore errors so we can log troubleshooting info on failures.
  163. ignore_errors: yes
  164. # Capture debug output here to simplify triage
  165. - when: control_plane_health.stdout != 'ok'
  166. block:
  167. - name: Check status in the kube-system namespace
  168. command: >
  169. {{ openshift_client_binary }} status --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system
  170. register: control_plane_status
  171. ignore_errors: true
  172. - debug:
  173. msg: "{{ control_plane_status.stdout_lines }}"
  174. - name: Get pods in the kube-system namespace
  175. command: >
  176. {{ openshift_client_binary }} get pods --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system -o wide
  177. register: control_plane_pods
  178. ignore_errors: true
  179. - debug:
  180. msg: "{{ control_plane_pods.stdout_lines }}"
  181. - name: Get events in the kube-system namespace
  182. command: >
  183. {{ openshift_client_binary }} get events --config={{ openshift.common.config_base }}/master/admin.kubeconfig -n kube-system
  184. register: control_plane_events
  185. ignore_errors: true
  186. - debug:
  187. msg: "{{ control_plane_events.stdout_lines }}"
  188. - name: Get API logs
  189. command: >
  190. /usr/local/bin/master-logs api api
  191. register: control_plane_logs_api
  192. ignore_errors: true
  193. - debug:
  194. msg: "{{ control_plane_logs_api.stdout_lines }}"
  195. - name: Get node logs
  196. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  197. register: control_plane_logs_node
  198. ignore_errors: true
  199. - debug:
  200. msg: "{{ control_plane_logs_node.stdout_lines }}"
  201. - name: Report control plane errors
  202. fail:
  203. msg: Control plane install failed.
  204. when: control_plane_health.stdout != 'ok'