main.yml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. ---
  2. - fail:
  3. msg: "Both 'certfile' and 'keyfile' keys must be supplied when configuring openshift_master_ca_certificate"
  4. when: openshift_master_ca_certificate is defined and ('certfile' not in openshift_master_ca_certificate or 'keyfile' not in openshift_master_ca_certificate)
  5. - name: Install the base package for admin tooling
  6. package:
  7. name: "{{ openshift_service_type }}{{ openshift_pkg_version | default('') | lib_utils_oo_image_tag_to_rpm_version(include_dash=True) }}"
  8. state: present
  9. when: not openshift_is_atomic | bool
  10. register: install_result
  11. until: install_result is succeeded
  12. delegate_to: "{{ openshift_ca_host }}"
  13. run_once: true
  14. - name: Reload generated facts
  15. openshift_facts:
  16. when:
  17. - hostvars[openshift_ca_host].install_result | default({'changed':false}) is changed
  18. - name: Create openshift_ca_config_dir if it does not exist
  19. file:
  20. path: "{{ openshift_ca_config_dir }}"
  21. state: directory
  22. delegate_to: "{{ openshift_ca_host }}"
  23. run_once: true
  24. - name: Determine if CA must be created
  25. stat:
  26. path: "{{ openshift_ca_config_dir }}/{{ item }}"
  27. register: g_master_ca_stat_result
  28. with_items:
  29. - ca-bundle.crt
  30. - ca.crt
  31. - ca.key
  32. delegate_to: "{{ openshift_ca_host }}"
  33. run_once: true
  34. - name: Determine if front-proxy CA must be created
  35. stat:
  36. path: "{{ openshift_ca_config_dir }}/{{ item }}"
  37. register: g_master_front_proxy_ca_stat_result
  38. with_items:
  39. - front-proxy-ca.crt
  40. - front-proxy-ca.key
  41. delegate_to: "{{ openshift_ca_host }}"
  42. run_once: true
  43. - set_fact:
  44. master_ca_missing: "{{ False in (g_master_ca_stat_result.results
  45. | lib_utils_oo_collect(attribute='stat.exists')
  46. | list) }}"
  47. master_front_proxy_ca_missing: "{{ False in (g_master_front_proxy_ca_stat_result.results
  48. | lib_utils_oo_collect(attribute='stat.exists')
  49. | list) }}"
  50. run_once: true
  51. - name: Retain original serviceaccount keys
  52. copy:
  53. src: "{{ item }}"
  54. dest: "{{ item }}.keep"
  55. remote_src: true
  56. with_items:
  57. - "{{ openshift_ca_config_dir }}/serviceaccounts.private.key"
  58. - "{{ openshift_ca_config_dir }}/serviceaccounts.public.key"
  59. when: openshift_certificates_redeploy | default(false) | bool
  60. - name: Deploy master ca certificate
  61. copy:
  62. src: "{{ item.src }}"
  63. dest: "{{ openshift_ca_config_dir }}/{{ item.dest }}"
  64. force: no
  65. with_items:
  66. - src: "{{ (openshift_master_ca_certificate | default({'certfile':none})).certfile }}"
  67. dest: ca.crt
  68. - src: "{{ (openshift_master_ca_certificate | default({'keyfile':none})).keyfile }}"
  69. dest: ca.key
  70. when: openshift_master_ca_certificate is defined
  71. delegate_to: "{{ openshift_ca_host }}"
  72. run_once: true
  73. # Upload additional CA if necessary
  74. - name: Deploy additional ca
  75. copy:
  76. src: "{{ openshift_additional_ca }}"
  77. dest: "{{ openshift.common.config_base }}/master/additional_ca.crt"
  78. mode: 0644
  79. when: openshift_additional_ca is defined
  80. - name: Create ca serial
  81. copy:
  82. content: "00"
  83. dest: "{{ openshift_ca_config_dir }}/ca.serial.txt"
  84. force: "{{ openshift_certificates_redeploy | default(false) | bool }}"
  85. when: openshift_master_ca_certificate is defined
  86. delegate_to: "{{ openshift_ca_host }}"
  87. run_once: true
  88. - find:
  89. paths: "{{ openshift.common.config_base }}/master/legacy-ca/"
  90. patterns: ".*-ca.crt"
  91. use_regex: true
  92. register: g_master_legacy_ca_result
  93. # This should NOT replace the CA due to --overwrite=false when a CA already exists.
  94. - name: Create the front-proxy CA if it does not already exist
  95. command: >
  96. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} adm ca create-signer-cert
  97. --cert="{{ openshift_ca_config_dir }}/front-proxy-ca.crt"
  98. --key="{{ openshift_ca_config_dir }}/front-proxy-ca.key"
  99. --serial="{{ openshift_ca_config_dir }}/ca.serial.txt"
  100. --expire-days={{ openshift_ca_cert_expire_days }}
  101. --overwrite=false
  102. when: master_front_proxy_ca_missing | bool or openshift_certificates_redeploy | default(false) | bool
  103. delegate_to: "{{ openshift_ca_host }}"
  104. run_once: true
  105. # This should NOT replace the CA due to --overwrite=false when a CA already exists.
  106. - name: Create the master certificates if they do not already exist
  107. command: >
  108. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} adm ca create-master-certs
  109. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | lib_utils_oo_collect('cafile') %}
  110. --certificate-authority {{ named_ca_certificate }}
  111. {% endfor %}
  112. {% for legacy_ca_certificate in g_master_legacy_ca_result.files | default([]) | lib_utils_oo_collect('path') %}
  113. --certificate-authority {{ legacy_ca_certificate }}
  114. {% endfor %}
  115. {% if openshift_additional_ca is defined %}
  116. --certificate-authority {{ openshift.common.config_base }}/master/additional_ca.crt
  117. {% endif %}
  118. --hostnames={{ hostvars[openshift_ca_host].openshift.common.all_hostnames | join(',') }}
  119. --master={{ openshift.master.api_url }}
  120. --public-master={{ openshift.master.public_api_url }}
  121. --cert-dir={{ openshift_ca_config_dir }}
  122. --expire-days={{ openshift_master_cert_expire_days }}
  123. --signer-expire-days={{ openshift_ca_cert_expire_days }}
  124. --overwrite=false
  125. when: master_ca_missing | bool or openshift_certificates_redeploy | default(false) | bool
  126. delegate_to: "{{ openshift_ca_host }}"
  127. run_once: true
  128. # Create client-ca-bundle.crt containing old and new OpenShift CA
  129. # certificates. This bundle will be used when rolling the OpenShift CA
  130. # certificate.
  131. - name: Create client-ca-bundle.crt
  132. block:
  133. - command: mktemp -d /tmp/openshift-ansible-XXXXXX
  134. register: openshift_ca_clientconfig_tmpdir
  135. delegate_to: "{{ openshift_ca_host }}"
  136. - copy:
  137. src: "{{ item }}"
  138. dest: "{{ openshift_ca_clientconfig_tmpdir.stdout }}/"
  139. remote_src: true
  140. with_items: "{{ g_master_legacy_ca_result.files | default([]) | lib_utils_oo_collect('path') }}"
  141. delegate_to: "{{ openshift_ca_host }}"
  142. run_once: true
  143. - copy:
  144. src: "{{ openshift_ca_config_dir }}/ca.crt"
  145. dest: "{{ openshift_ca_clientconfig_tmpdir.stdout }}/"
  146. remote_src: true
  147. delegate_to: "{{ openshift_ca_host }}"
  148. run_once: true
  149. - assemble:
  150. src: "{{ openshift_ca_clientconfig_tmpdir.stdout }}"
  151. dest: "{{ openshift_ca_config_dir }}/client-ca-bundle.crt"
  152. mode: 0644
  153. owner: root
  154. group: root
  155. delegate_to: "{{ openshift_ca_host }}"
  156. run_once: true
  157. - name: Test local loopback context
  158. command: >
  159. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} config view
  160. --config={{ openshift_master_loopback_config }}
  161. changed_when: false
  162. register: loopback_config
  163. delegate_to: "{{ openshift_ca_host }}"
  164. run_once: true
  165. # create-api-client-config generates a ca.crt file which will
  166. # overwrite the OpenShift CA certificate. Generate the loopback
  167. # kubeconfig in a temporary directory and then copy files into the
  168. # master config dir to avoid overwriting ca.crt.
  169. - block:
  170. - name: Create temp directory for loopback master client config
  171. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  172. register: openshift_ca_loopback_tmpdir
  173. - name: Generate the loopback master client config
  174. command: >
  175. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} adm create-api-client-config
  176. --certificate-authority={{ openshift_ca_cert }}
  177. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | lib_utils_oo_collect('cafile') %}
  178. --certificate-authority {{ named_ca_certificate }}
  179. {% endfor %}
  180. --client-dir={{ openshift_ca_loopback_tmpdir.stdout }}
  181. --groups=system:masters,system:openshift-master
  182. --master={{ hostvars[openshift_ca_host].openshift.master.loopback_api_url }}
  183. --public-master={{ hostvars[openshift_ca_host].openshift.master.loopback_api_url }}
  184. --signer-cert={{ openshift_ca_cert }}
  185. --signer-key={{ openshift_ca_key }}
  186. --signer-serial={{ openshift_ca_serial }}
  187. --user=system:openshift-master
  188. --basename=openshift-master
  189. --expire-days={{ openshift_master_cert_expire_days }}
  190. - name: Copy generated loopback master client config to master config dir
  191. copy:
  192. src: "{{ openshift_ca_loopback_tmpdir.stdout }}/{{ item }}"
  193. dest: "{{ openshift_ca_config_dir }}"
  194. remote_src: true
  195. with_items:
  196. - openshift-master.crt
  197. - openshift-master.key
  198. - openshift-master.kubeconfig
  199. - name: Delete temp directory
  200. file:
  201. name: "{{ openshift_ca_loopback_tmpdir.stdout }}"
  202. state: absent
  203. when: loopback_context_string not in loopback_config.stdout
  204. delegate_to: "{{ openshift_ca_host }}"
  205. run_once: true
  206. # create-api-client-config generates a ca.crt file which will
  207. # overwrite the OpenShift CA certificate. Generate the loopback
  208. # kubeconfig in a temporary directory and then copy files into the
  209. # master config dir to avoid overwriting ca.crt.
  210. - block:
  211. - name: Create temp directory for loopback master client config
  212. command: mktemp -d /tmp/openshift-ansible-XXXXXX
  213. register: openshift_ca_loopback_tmpdir
  214. - name: Generate the aggregator api-client config
  215. command: >
  216. {{ hostvars[openshift_ca_host]['first_master_client_binary'] }} adm create-api-client-config
  217. --certificate-authority={{ openshift_ca_cert }}
  218. {% for named_ca_certificate in openshift.master.named_certificates | default([]) | lib_utils_oo_collect('cafile') %}
  219. --certificate-authority {{ named_ca_certificate }}
  220. {% endfor %}
  221. --client-dir={{ openshift_ca_loopback_tmpdir.stdout }}
  222. --user=aggregator-front-proxy
  223. --signer-cert="{{ openshift_ca_config_dir }}/front-proxy-ca.crt"
  224. --signer-key="{{ openshift_ca_config_dir }}/front-proxy-ca.key"
  225. --signer-serial={{ openshift_ca_serial }}
  226. --expire-days={{ openshift_master_cert_expire_days }}
  227. - name: Copy generated loopback master client config to master config dir
  228. copy:
  229. src: "{{ openshift_ca_loopback_tmpdir.stdout }}/{{ item }}"
  230. dest: "{{ openshift_ca_config_dir }}"
  231. remote_src: true
  232. with_items:
  233. - aggregator-front-proxy.crt
  234. - aggregator-front-proxy.key
  235. - aggregator-front-proxy.kubeconfig
  236. - name: Delete temp directory
  237. file:
  238. name: "{{ openshift_ca_loopback_tmpdir.stdout }}"
  239. state: absent
  240. delegate_to: "{{ openshift_ca_host }}"
  241. run_once: true
  242. - name: Restore original serviceaccount keys
  243. copy:
  244. src: "{{ item }}.keep"
  245. dest: "{{ item }}"
  246. remote_src: true
  247. with_items:
  248. - "{{ openshift_ca_config_dir }}/serviceaccounts.private.key"
  249. - "{{ openshift_ca_config_dir }}/serviceaccounts.public.key"
  250. when: openshift_certificates_redeploy | default(false) | bool
  251. - name: Remove backup serviceaccount keys
  252. file:
  253. path: "{{ item }}.keep"
  254. state: absent
  255. with_items:
  256. - "{{ openshift_ca_config_dir }}/serviceaccounts.private.key"
  257. - "{{ openshift_ca_config_dir }}/serviceaccounts.public.key"
  258. when: openshift_certificates_redeploy | default(false) | bool