main.yml 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  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. | 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].openshift.common.client_binary }} adm ca create-server-cert
  45. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | oo_collect('cafile') %}
  46. --certificate-authority {{ named_ca_certificate }}
  47. {% endfor %}
  48. {% for legacy_ca_certificate in g_master_legacy_ca_result.files | default([]) | 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. | oo_select_keys(groups['oo_masters_to_config'])
  62. | 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].openshift.common.client_binary }} adm create-api-client-config
  68. --certificate-authority={{ openshift_ca_cert }}
  69. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | 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. | oo_select_keys(groups['oo_masters_to_config'])
  86. | 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. - "{{ hostvars[inventory_hostname] | certificates_to_synchronize }}"
  97. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  98. delegate_to: "{{ openshift_ca_host }}"
  99. - name: Remove generated etcd client certs when using external etcd
  100. file:
  101. path: "{{ openshift_master_generated_config_dir }}/{{ item }}"
  102. state: absent
  103. when: openshift_master_etcd_hosts | length > 0
  104. with_items:
  105. - master.etcd-client.crt
  106. - master.etcd-client.key
  107. delegate_to: "{{ openshift_ca_host }}"
  108. - name: Create local temp directory for syncing certs
  109. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  110. register: g_master_certs_mktemp
  111. changed_when: False
  112. when: master_certs_missing | bool
  113. become: no
  114. - name: Create a tarball of the master certs
  115. command: >
  116. tar -czvf {{ openshift_master_generated_config_dir }}.tgz
  117. -C {{ openshift_master_generated_config_dir }} .
  118. args:
  119. creates: "{{ openshift_master_generated_config_dir }}.tgz"
  120. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  121. delegate_to: "{{ openshift_ca_host }}"
  122. - name: Retrieve the master cert tarball from the master
  123. fetch:
  124. src: "{{ openshift_master_generated_config_dir }}.tgz"
  125. dest: "{{ g_master_certs_mktemp.stdout }}/"
  126. flat: yes
  127. fail_on_missing: yes
  128. validate_checksum: yes
  129. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  130. delegate_to: "{{ openshift_ca_host }}"
  131. - name: Ensure certificate directory exists
  132. file:
  133. path: "{{ openshift_master_config_dir }}"
  134. state: directory
  135. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  136. - name: Unarchive the tarball on the master
  137. unarchive:
  138. src: "{{ g_master_certs_mktemp.stdout }}/{{ openshift_master_cert_subdir }}.tgz"
  139. dest: "{{ openshift_master_config_dir }}"
  140. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  141. - name: Delete local temp directory
  142. local_action: file path="{{ g_master_certs_mktemp.stdout }}" state=absent
  143. changed_when: False
  144. when: master_certs_missing | bool
  145. become: no
  146. - name: Lookup default group for ansible_ssh_user
  147. command: "/usr/bin/id -g {{ ansible_ssh_user | quote }}"
  148. changed_when: false
  149. register: _ansible_ssh_user_gid
  150. - set_fact:
  151. client_users: "{{ [ansible_ssh_user, 'root'] | unique }}"
  152. - name: Create the client config dir(s)
  153. file:
  154. path: "~{{ item }}/.kube"
  155. state: directory
  156. mode: 0700
  157. owner: "{{ item }}"
  158. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  159. with_items: "{{ client_users }}"
  160. # TODO: Update this file if the contents of the source file are not present in
  161. # the dest file, will need to make sure to ignore things that could be added
  162. - name: Copy the admin client config(s)
  163. copy:
  164. src: "{{ openshift_master_config_dir }}/admin.kubeconfig"
  165. dest: "~{{ item }}/.kube/config"
  166. remote_src: yes
  167. force: "{{ openshift_certificates_redeploy | default(false) }}"
  168. with_items: "{{ client_users }}"
  169. - name: Update the permissions on the admin client config(s)
  170. file:
  171. path: "~{{ item }}/.kube/config"
  172. state: file
  173. mode: 0700
  174. owner: "{{ item }}"
  175. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  176. with_items: "{{ client_users }}"
  177. # Ensure ca-bundle exists for 3.2+ configuration
  178. - name: Check for ca-bundle.crt
  179. stat:
  180. path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  181. register: ca_bundle_stat
  182. failed_when: false
  183. - name: Check for ca.crt
  184. stat:
  185. path: "{{ openshift.common.config_base }}/master/ca.crt"
  186. register: ca_crt_stat
  187. failed_when: false
  188. - name: Migrate ca.crt to ca-bundle.crt
  189. command: mv ca.crt ca-bundle.crt
  190. args:
  191. chdir: "{{ openshift.common.config_base }}/master"
  192. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  193. - name: Link ca.crt to ca-bundle.crt
  194. file:
  195. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  196. path: "{{ openshift.common.config_base }}/master/ca.crt"
  197. state: link
  198. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists