main.yml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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: Open up firewall ports
  12. import_tasks: firewall.yml
  13. - name: Prepare static pod scripts
  14. import_tasks: static_shim.yml
  15. - name: Create r_openshift_master_data_dir
  16. file:
  17. path: "{{ r_openshift_master_data_dir }}"
  18. state: directory
  19. mode: 0755
  20. owner: root
  21. group: root
  22. - name: Create config parent directory if it does not exist
  23. file:
  24. path: "{{ openshift_master_config_dir }}"
  25. state: directory
  26. - name: Create the policy file if it does not already exist
  27. command: >
  28. {{ openshift_client_binary }} adm create-bootstrap-policy-file
  29. --filename={{ openshift_master_policy }}
  30. args:
  31. creates: "{{ openshift_master_policy }}"
  32. - name: Create the scheduler config
  33. copy:
  34. content: "{{ scheduler_config | to_nice_json }}"
  35. dest: "{{ openshift_master_scheduler_conf }}"
  36. backup: true
  37. - import_tasks: htpass_provider.yml
  38. - name: Create the ldap ca file if needed
  39. copy:
  40. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"
  41. content: "{{ openshift.master.ldap_ca }}"
  42. mode: 0600
  43. backup: yes
  44. when:
  45. - openshift.master.ldap_ca is defined
  46. - item.kind == 'LDAPPasswordIdentityProvider'
  47. with_items: "{{ openshift_master_identity_providers }}"
  48. - name: Create the openid ca file if needed
  49. copy:
  50. dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('openid_ca.crt') }}"
  51. content: "{{ openshift.master.openid_ca }}"
  52. mode: 0600
  53. backup: yes
  54. when:
  55. - openshift.master.openid_ca is defined
  56. - item.kind == 'OpenIDIdentityProvider'
  57. - item.ca | default('') != ''
  58. with_items: "{{ openshift_master_identity_providers }}"
  59. - name: Create the request header ca file if needed
  60. copy:
  61. dest: "{{ item.clientCA if 'clientCA' in item and '/' in item.clientCA else openshift_master_config_dir ~ '/' ~ item.clientCA | default('request_header_ca.crt') }}"
  62. content: "{{ openshift_master_request_header_ca }}"
  63. mode: 0600
  64. backup: yes
  65. when:
  66. - openshift_master_request_header_ca != l_osm_request_header_none
  67. - item.kind == 'RequestHeaderIdentityProvider'
  68. - item.clientCA | default('') != ''
  69. with_items: "{{ openshift_master_identity_providers }}"
  70. - name: Set fact of all etcd host IPs
  71. openshift_facts:
  72. role: common
  73. local_facts:
  74. no_proxy_etcd_host_ips: "{{ openshift_no_proxy_etcd_host_ips }}"
  75. - name: Create session secrets file
  76. template:
  77. dest: "{{ openshift_master_session_secrets_file }}"
  78. src: sessionSecretsFile.yaml.v1.j2
  79. owner: root
  80. group: root
  81. mode: 0600
  82. - set_fact:
  83. # translate_idps is a custom filter in role lib_utils
  84. translated_identity_providers: "{{ openshift_master_identity_providers | translate_idps('v1') }}"
  85. # TODO: add the validate parameter when there is a validation command to run
  86. - name: Create master config
  87. template:
  88. dest: "{{ openshift_master_config_file }}"
  89. src: master.yaml.v1.j2
  90. backup: true
  91. owner: root
  92. group: root
  93. mode: 0600
  94. - import_tasks: set_loopback_context.yml
  95. - name: Create the master service env file
  96. template:
  97. src: "master.env.j2"
  98. dest: /etc/origin/master/master.env
  99. backup: true
  100. - import_tasks: static.yml
  101. - name: Establish the default bootstrap kubeconfig for masters
  102. copy:
  103. remote_src: true
  104. src: "/etc/origin/master/admin.kubeconfig"
  105. dest: "{{ item }}"
  106. mode: 0600
  107. with_items:
  108. # bootstrap as an admin
  109. - /etc/origin/node/bootstrap.kubeconfig
  110. # copy to this location to bypass initial bootstrap request
  111. - /etc/origin/node/node.kubeconfig
  112. - name: Start and enable self-hosting node
  113. systemd:
  114. name: "{{ openshift_service_type }}-node"
  115. state: restarted
  116. enabled: yes
  117. register: node_start
  118. ignore_errors: yes
  119. - when: node_start is failed
  120. block:
  121. - name: Get node logs
  122. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  123. register: logs_node
  124. ignore_errors: true
  125. - debug:
  126. msg: "{{ logs_node.stdout_lines }}"
  127. - fail:
  128. msg: Node start failed.
  129. - name: Verify that the control plane is running
  130. command: >
  131. curl -k {{ openshift.master.api_url }}/healthz/ready
  132. args:
  133. # Disables the following warning:
  134. # Consider using get_url or uri module rather than running curl
  135. warn: no
  136. register: control_plane_health
  137. until: control_plane_health.stdout == 'ok'
  138. retries: 60
  139. delay: 5
  140. changed_when: false
  141. # Ignore errors so we can log troubleshooting info on failures.
  142. ignore_errors: yes
  143. # Capture debug output here to simplify triage
  144. - when: control_plane_health.stdout != 'ok'
  145. block:
  146. - name: Check status in the kube-system namespace
  147. command: >
  148. {{ openshift_client_binary }} status --config=/etc/origin/master/admin.kubeconfig -n kube-system
  149. register: control_plane_status
  150. ignore_errors: true
  151. - debug:
  152. msg: "{{ control_plane_status.stdout_lines }}"
  153. - name: Get pods in the kube-system namespace
  154. command: >
  155. {{ openshift_client_binary }} get pods --config=/etc/origin/master/admin.kubeconfig -n kube-system -o wide
  156. register: control_plane_pods
  157. ignore_errors: true
  158. - debug:
  159. msg: "{{ control_plane_pods.stdout_lines }}"
  160. - name: Get events in the kube-system namespace
  161. command: >
  162. {{ openshift_client_binary }} get events --config=/etc/origin/master/admin.kubeconfig -n kube-system
  163. register: control_plane_events
  164. ignore_errors: true
  165. - debug:
  166. msg: "{{ control_plane_events.stdout_lines }}"
  167. - name: Get API logs
  168. command: >
  169. /usr/local/bin/master-logs api api
  170. register: control_plane_logs_api
  171. ignore_errors: true
  172. - debug:
  173. msg: "{{ control_plane_logs_api.stdout_lines }}"
  174. - name: Get node logs
  175. command: journalctl --no-pager -n 300 -u {{ openshift_service_type }}-node
  176. register: control_plane_logs_node
  177. ignore_errors: true
  178. - debug:
  179. msg: "{{ control_plane_logs_node.stdout_lines }}"
  180. - name: Report control plane errors
  181. fail:
  182. msg: Control plane install failed.
  183. when: control_plane_health.stdout != 'ok'
  184. - import_tasks: bootstrap.yml