main.yml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. ---
  2. - set_fact:
  3. openshift_master_certs_no_etcd:
  4. - admin.crt
  5. - master.kubelet-client.crt
  6. - master.proxy-client.crt
  7. - master.server.crt
  8. - openshift-master.crt
  9. - openshift-registry.crt
  10. - openshift-router.crt
  11. - etcd.server.crt
  12. openshift_master_certs_etcd:
  13. - master.etcd-client.crt
  14. - set_fact:
  15. openshift_master_certs: "{{ (openshift_master_certs_no_etcd | union(openshift_master_certs_etcd )) if openshift_master_etcd_hosts | length > 0 else openshift_master_certs_no_etcd }}"
  16. - name: Check status of master certificates
  17. stat:
  18. path: "{{ openshift_master_config_dir }}/{{ item }}"
  19. with_items:
  20. - "{{ openshift_master_certs }}"
  21. register: g_master_cert_stat_result
  22. when: not openshift_certificates_redeploy | default(false) | bool
  23. - set_fact:
  24. master_certs_missing: "{{ true if openshift_certificates_redeploy | default(false) | bool
  25. else (False in (g_master_cert_stat_result.results
  26. | default({})
  27. | lib_utils_oo_collect(attribute='stat.exists')
  28. | list)) }}"
  29. - name: Ensure the generated_configs directory present
  30. file:
  31. path: "{{ openshift_master_generated_config_dir }}"
  32. state: directory
  33. mode: 0700
  34. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  35. delegate_to: "{{ openshift_ca_host }}"
  36. - find:
  37. paths: "{{ openshift_master_config_dir }}/legacy-ca/"
  38. patterns: ".*-ca.crt"
  39. use_regex: true
  40. register: g_master_legacy_ca_result
  41. delegate_to: "{{ openshift_ca_host }}"
  42. - name: Create the master server certificate
  43. command: >
  44. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} adm ca create-server-cert
  45. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | lib_utils_oo_collect('cafile') %}
  46. --certificate-authority {{ named_ca_certificate }}
  47. {% endfor %}
  48. {% for legacy_ca_certificate in g_master_legacy_ca_result.files | default([]) | lib_utils_oo_collect('path') %}
  49. --certificate-authority {{ legacy_ca_certificate }}
  50. {% endfor %}
  51. --hostnames={{ hostvars[item].openshift.common.all_hostnames | join(',') }}
  52. --cert={{ openshift_generated_configs_dir }}/master-{{ hostvars[item].openshift.common.hostname }}/master.server.crt
  53. --key={{ openshift_generated_configs_dir }}/master-{{ hostvars[item].openshift.common.hostname }}/master.server.key
  54. --expire-days={{ openshift_master_cert_expire_days }}
  55. --signer-cert={{ openshift_ca_cert }}
  56. --signer-key={{ openshift_ca_key }}
  57. --signer-serial={{ openshift_ca_serial }}
  58. --overwrite=false
  59. when: item != openshift_ca_host
  60. with_items: "{{ hostvars
  61. | lib_utils_oo_select_keys(groups['oo_masters_to_config'])
  62. | lib_utils_oo_collect(attribute='inventory_hostname', filters={'master_certs_missing':True}) }}"
  63. delegate_to: "{{ openshift_ca_host }}"
  64. run_once: true
  65. - name: Generate the loopback master client config
  66. command: >
  67. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} adm create-api-client-config
  68. --certificate-authority={{ openshift_ca_cert }}
  69. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | lib_utils_oo_collect('cafile') %}
  70. --certificate-authority {{ named_ca_certificate }}
  71. {% endfor %}
  72. --client-dir={{ openshift_generated_configs_dir }}/master-{{ hostvars[item].openshift.common.hostname }}
  73. --groups=system:masters,system:openshift-master
  74. --master={{ hostvars[item].openshift.master.loopback_api_url }}
  75. --public-master={{ hostvars[item].openshift.master.loopback_api_url }}
  76. --signer-cert={{ openshift_ca_cert }}
  77. --signer-key={{ openshift_ca_key }}
  78. --signer-serial={{ openshift_ca_serial }}
  79. --user=system:openshift-master
  80. --basename=openshift-master
  81. --expire-days={{ openshift_master_cert_expire_days }}
  82. args:
  83. creates: "{{ openshift_generated_configs_dir }}/master-{{ hostvars[item].openshift.common.hostname }}/openshift-master.kubeconfig"
  84. with_items: "{{ hostvars
  85. | lib_utils_oo_select_keys(groups['oo_masters_to_config'])
  86. | lib_utils_oo_collect(attribute='inventory_hostname', filters={'master_certs_missing':True}) }}"
  87. when: item != openshift_ca_host
  88. delegate_to: "{{ openshift_ca_host }}"
  89. run_once: true
  90. - file:
  91. src: "{{ openshift_master_config_dir }}/{{ item }}"
  92. dest: "{{ openshift_master_generated_config_dir }}/{{ item }}"
  93. state: hard
  94. force: true
  95. with_items:
  96. # certificates_to_synchronize is a custom filter in lib_utils
  97. - "{{ hostvars[inventory_hostname] | certificates_to_synchronize }}"
  98. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  99. delegate_to: "{{ openshift_ca_host }}"
  100. - name: Remove generated etcd client certs when using external etcd
  101. file:
  102. path: "{{ openshift_master_generated_config_dir }}/{{ item }}"
  103. state: absent
  104. when: openshift_master_etcd_hosts | length > 0
  105. with_items:
  106. - master.etcd-client.crt
  107. - master.etcd-client.key
  108. delegate_to: "{{ openshift_ca_host }}"
  109. - name: Create local temp directory for syncing certs
  110. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  111. register: g_master_certs_mktemp
  112. changed_when: False
  113. when: master_certs_missing | bool
  114. - name: Chmod local temp directory for syncing certs
  115. local_action: command chmod 777 "{{ g_master_certs_mktemp.stdout }}"
  116. changed_when: False
  117. when: master_certs_missing | bool
  118. - name: Create a tarball of the master certs
  119. command: >
  120. tar -czvf {{ openshift_master_generated_config_dir }}.tgz
  121. -C {{ openshift_master_generated_config_dir }} .
  122. args:
  123. creates: "{{ openshift_master_generated_config_dir }}.tgz"
  124. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  125. delegate_to: "{{ openshift_ca_host }}"
  126. - name: Retrieve the master cert tarball from the master
  127. fetch:
  128. src: "{{ openshift_master_generated_config_dir }}.tgz"
  129. dest: "{{ g_master_certs_mktemp.stdout }}/"
  130. flat: yes
  131. fail_on_missing: yes
  132. validate_checksum: yes
  133. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  134. delegate_to: "{{ openshift_ca_host }}"
  135. - name: Ensure certificate directory exists
  136. file:
  137. path: "{{ openshift_master_config_dir }}"
  138. state: directory
  139. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  140. - name: Unarchive the tarball on the master
  141. unarchive:
  142. src: "{{ g_master_certs_mktemp.stdout }}/{{ openshift_master_cert_subdir }}.tgz"
  143. dest: "{{ openshift_master_config_dir }}"
  144. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  145. - name: Delete local temp directory
  146. local_action: file path="{{ g_master_certs_mktemp.stdout }}" state=absent
  147. changed_when: False
  148. when: master_certs_missing | bool
  149. - name: Lookup default group for ansible_ssh_user
  150. command: "/usr/bin/id -g {{ ansible_ssh_user | quote }}"
  151. changed_when: false
  152. register: _ansible_ssh_user_gid
  153. - set_fact:
  154. client_users: "{{ [ansible_ssh_user, 'root'] | unique }}"
  155. - name: Create the client config dir(s)
  156. file:
  157. path: "~{{ item }}/.kube"
  158. state: directory
  159. mode: 0700
  160. owner: "{{ item }}"
  161. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  162. with_items: "{{ client_users }}"
  163. # TODO: Update this file if the contents of the source file are not present in
  164. # the dest file, will need to make sure to ignore things that could be added
  165. - name: Copy the admin client config(s)
  166. copy:
  167. src: "{{ openshift_master_config_dir }}/admin.kubeconfig"
  168. dest: "~{{ item }}/.kube/config"
  169. remote_src: yes
  170. force: "{{ openshift_certificates_redeploy | default(false) }}"
  171. with_items: "{{ client_users }}"
  172. - name: Update the permissions on the admin client config(s)
  173. file:
  174. path: "~{{ item }}/.kube/config"
  175. state: file
  176. mode: 0700
  177. owner: "{{ item }}"
  178. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  179. with_items: "{{ client_users }}"
  180. # Ensure ca-bundle exists for 3.2+ configuration
  181. - name: Check for ca-bundle.crt
  182. stat:
  183. path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  184. register: ca_bundle_stat
  185. failed_when: false
  186. - name: Check for ca.crt
  187. stat:
  188. path: "{{ openshift.common.config_base }}/master/ca.crt"
  189. register: ca_crt_stat
  190. failed_when: false
  191. - name: Migrate ca.crt to ca-bundle.crt
  192. command: mv ca.crt ca-bundle.crt
  193. args:
  194. chdir: "{{ openshift.common.config_base }}/master"
  195. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  196. - name: Link ca.crt to ca-bundle.crt
  197. file:
  198. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  199. path: "{{ openshift.common.config_base }}/master/ca.crt"
  200. state: link
  201. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists