main.yml 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. ---
  2. - set_fact:
  3. openshift_master_certs_no_etcd:
  4. - admin.crt
  5. - master.kubelet-client.crt
  6. - "{{ 'master.proxy-client.crt' if openshift.common.version_gte_3_1_or_1_1 else omit }}"
  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. {% if openshift_version | oo_version_gte_3_5_or_1_5(openshift.common.deployment_type) | bool %}
  55. --expire-days={{ openshift_master_cert_expire_days }}
  56. {% endif %}
  57. --signer-cert={{ openshift_ca_cert }}
  58. --signer-key={{ openshift_ca_key }}
  59. --signer-serial={{ openshift_ca_serial }}
  60. --overwrite=false
  61. with_items: "{{ hostvars
  62. | oo_select_keys(groups['oo_masters_to_config'])
  63. | oo_collect(attribute='inventory_hostname', filters={'master_certs_missing':True})
  64. | difference([openshift_ca_host])}}"
  65. delegate_to: "{{ openshift_ca_host }}"
  66. run_once: true
  67. - name: Generate the master client config
  68. command: >
  69. {{ hostvars[openshift_ca_host].openshift.common.client_binary }} adm create-api-client-config
  70. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | oo_collect('cafile') %}
  71. --certificate-authority {{ named_ca_certificate }}
  72. {% endfor %}
  73. --certificate-authority={{ openshift_ca_cert }}
  74. --client-dir={{ openshift_generated_configs_dir }}/master-{{ hostvars[item].openshift.common.hostname }}
  75. --groups=system:masters,system:openshift-master
  76. --master={{ openshift.master.api_url }}
  77. --public-master={{ openshift.master.public_api_url }}
  78. --signer-cert={{ openshift_ca_cert }}
  79. --signer-key={{ openshift_ca_key }}
  80. --signer-serial={{ openshift_ca_serial }}
  81. --user=system:openshift-master
  82. --basename=openshift-master
  83. {% if openshift_version | oo_version_gte_3_5_or_1_5(openshift.common.deployment_type) | bool %}
  84. --expire-days={{ openshift_master_cert_expire_days }}
  85. {% endif %}
  86. args:
  87. creates: "{{ openshift_generated_configs_dir }}/master-{{ hostvars[item].openshift.common.hostname }}/openshift-master.kubeconfig"
  88. with_items: "{{ hostvars
  89. | oo_select_keys(groups['oo_masters_to_config'])
  90. | oo_collect(attribute='inventory_hostname', filters={'master_certs_missing':True})
  91. | difference([openshift_ca_host])}}"
  92. delegate_to: "{{ openshift_ca_host }}"
  93. run_once: true
  94. - file:
  95. src: "{{ openshift_master_config_dir }}/{{ item }}"
  96. dest: "{{ openshift_master_generated_config_dir }}/{{ item }}"
  97. state: hard
  98. force: true
  99. with_items:
  100. - "{{ hostvars[inventory_hostname] | certificates_to_synchronize }}"
  101. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  102. delegate_to: "{{ openshift_ca_host }}"
  103. - name: Remove generated etcd client certs when using external etcd
  104. file:
  105. path: "{{ openshift_master_generated_config_dir }}/{{ item }}"
  106. state: absent
  107. when: openshift_master_etcd_hosts | length > 0
  108. with_items:
  109. - master.etcd-client.crt
  110. - master.etcd-client.key
  111. delegate_to: "{{ openshift_ca_host }}"
  112. - name: Create local temp directory for syncing certs
  113. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  114. register: g_master_certs_mktemp
  115. changed_when: False
  116. when: master_certs_missing | bool
  117. delegate_to: localhost
  118. become: no
  119. - name: Create a tarball of the master certs
  120. command: >
  121. tar -czvf {{ openshift_master_generated_config_dir }}.tgz
  122. -C {{ openshift_master_generated_config_dir }} .
  123. args:
  124. creates: "{{ openshift_master_generated_config_dir }}.tgz"
  125. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  126. delegate_to: "{{ openshift_ca_host }}"
  127. - name: Retrieve the master cert tarball from the master
  128. fetch:
  129. src: "{{ openshift_master_generated_config_dir }}.tgz"
  130. dest: "{{ g_master_certs_mktemp.stdout }}/"
  131. flat: yes
  132. fail_on_missing: yes
  133. validate_checksum: yes
  134. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  135. delegate_to: "{{ openshift_ca_host }}"
  136. - name: Ensure certificate directory exists
  137. file:
  138. path: "{{ openshift_master_config_dir }}"
  139. state: directory
  140. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  141. - name: Unarchive the tarball on the master
  142. unarchive:
  143. src: "{{ g_master_certs_mktemp.stdout }}/{{ openshift_master_cert_subdir }}.tgz"
  144. dest: "{{ openshift_master_config_dir }}"
  145. when: master_certs_missing | bool and inventory_hostname != openshift_ca_host
  146. - file: name={{ g_master_certs_mktemp.stdout }} state=absent
  147. changed_when: False
  148. when: master_certs_missing | bool
  149. delegate_to: localhost
  150. become: no
  151. - name: Lookup default group for ansible_ssh_user
  152. command: "/usr/bin/id -g {{ ansible_ssh_user | quote }}"
  153. changed_when: false
  154. register: _ansible_ssh_user_gid
  155. - set_fact:
  156. client_users: "{{ [ansible_ssh_user, 'root'] | unique }}"
  157. - name: Create the client config dir(s)
  158. file:
  159. path: "~{{ item }}/.kube"
  160. state: directory
  161. mode: 0700
  162. owner: "{{ item }}"
  163. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  164. with_items: "{{ client_users }}"
  165. # TODO: Update this file if the contents of the source file are not present in
  166. # the dest file, will need to make sure to ignore things that could be added
  167. - name: Copy the admin client config(s)
  168. copy:
  169. src: "{{ openshift_master_config_dir }}/admin.kubeconfig"
  170. dest: "~{{ item }}/.kube/config"
  171. remote_src: yes
  172. force: "{{ openshift_certificates_redeploy | default(false) }}"
  173. with_items: "{{ client_users }}"
  174. - name: Update the permissions on the admin client config(s)
  175. file:
  176. path: "~{{ item }}/.kube/config"
  177. state: file
  178. mode: 0700
  179. owner: "{{ item }}"
  180. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  181. with_items: "{{ client_users }}"
  182. # Ensure ca-bundle exists for 3.2+ configuration
  183. - name: Check for ca-bundle.crt
  184. stat:
  185. path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  186. register: ca_bundle_stat
  187. failed_when: false
  188. - name: Check for ca.crt
  189. stat:
  190. path: "{{ openshift.common.config_base }}/master/ca.crt"
  191. register: ca_crt_stat
  192. failed_when: false
  193. - name: Migrate ca.crt to ca-bundle.crt
  194. command: mv ca.crt ca-bundle.crt
  195. args:
  196. chdir: "{{ openshift.common.config_base }}/master"
  197. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists
  198. - name: Link ca.crt to ca-bundle.crt
  199. file:
  200. src: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  201. path: "{{ openshift.common.config_base }}/master/ca.crt"
  202. state: link
  203. when: ca_crt_stat.stat.isreg and not ca_bundle_stat.stat.exists