main.yml 7.8 KB

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