openshift-ca.yml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. ---
  2. - name: Verify OpenShift version is greater than or equal to 1.2 or 3.2
  3. hosts: oo_first_master
  4. tasks:
  5. - fail:
  6. msg: "The current OpenShift version is less than 1.2/3.2 and does not support CA bundles."
  7. when: not openshift.common.version_gte_3_2_or_1_2 | bool
  8. - name: Check cert expirys
  9. hosts: oo_nodes_to_config:oo_masters_to_config:oo_etcd_to_config
  10. vars:
  11. openshift_certificate_expiry_show_all: yes
  12. roles:
  13. # Sets 'check_results' per host which contains health status for
  14. # etcd, master and node certificates. We will use 'check_results'
  15. # to determine if any certificates were expired prior to running
  16. # this playbook. Service restarts will be skipped if any
  17. # certificates were previously expired.
  18. - role: openshift_certificate_expiry
  19. # Update master config when ca-bundle not referenced. Services will be
  20. # restarted below after new CA certificate has been distributed.
  21. - name: Ensure ca-bundle.crt is referenced in master configuration
  22. hosts: oo_masters_to_config
  23. tasks:
  24. - slurp:
  25. src: "{{ openshift.common.config_base }}/master/master-config.yaml"
  26. register: g_master_config_output
  27. - modify_yaml:
  28. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  29. yaml_key: kubeletClientInfo.ca
  30. yaml_value: ca-bundle.crt
  31. when: (g_master_config_output.content|b64decode|from_yaml).kubeletClientInfo.ca != 'ca-bundle.crt'
  32. - modify_yaml:
  33. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  34. yaml_key: serviceAccountConfig.masterCA
  35. yaml_value: ca-bundle.crt
  36. when: (g_master_config_output.content|b64decode|from_yaml).serviceAccountConfig.masterCA != 'ca-bundle.crt'
  37. - modify_yaml:
  38. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  39. yaml_key: oauthConfig.masterCA
  40. yaml_value: ca-bundle.crt
  41. when: (g_master_config_output.content|b64decode|from_yaml).oauthConfig.masterCA != 'ca-bundle.crt'
  42. - modify_yaml:
  43. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  44. yaml_key: servingInfo.clientCA
  45. yaml_value: ca-bundle.crt
  46. when: (g_master_config_output.content|b64decode|from_yaml).servingInfo.clientCA != 'ca-bundle.crt'
  47. - modify_yaml:
  48. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  49. yaml_key: etcdClientInfo.ca
  50. yaml_value: ca-bundle.crt
  51. when:
  52. - groups.oo_etcd_to_config | default([]) | length == 0
  53. - (g_master_config_output.content|b64decode|from_yaml).etcdClientInfo.ca != 'ca-bundle.crt'
  54. - modify_yaml:
  55. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  56. yaml_key: etcdConfig.peerServingInfo.clientCA
  57. yaml_value: ca-bundle.crt
  58. when:
  59. - groups.oo_etcd_to_config | default([]) | length == 0
  60. - (g_master_config_output.content|b64decode|from_yaml).etcdConfig.peerServingInfo.clientCA != 'ca-bundle.crt'
  61. - modify_yaml:
  62. dest: "{{ openshift.common.config_base }}/master/master-config.yaml"
  63. yaml_key: etcdConfig.servingInfo.clientCA
  64. yaml_value: ca-bundle.crt
  65. when:
  66. - groups.oo_etcd_to_config | default([]) | length == 0
  67. - (g_master_config_output.content|b64decode|from_yaml).etcdConfig.servingInfo.clientCA != 'ca-bundle.crt'
  68. - name: Copy current OpenShift CA to legacy directory
  69. hosts: oo_masters_to_config
  70. pre_tasks:
  71. - name: Create legacy-ca directory
  72. file:
  73. path: "{{ openshift.common.config_base }}/master/legacy-ca"
  74. state: directory
  75. mode: 0700
  76. owner: root
  77. group: root
  78. - command: mktemp -u XXXXXX
  79. register: g_legacy_ca_mktemp
  80. changed_when: false
  81. # Copy CA certificate, key, serial and bundle to legacy-ca with a
  82. # prefix generated by mktemp, ie. XXXXXX-ca.crt.
  83. #
  84. # The following roles will pick up all CA certificates matching
  85. # /.*-ca.crt/ in the legacy-ca directory and ensure they are present
  86. # in the OpenShift CA bundle.
  87. # - openshift_ca
  88. # - openshift_master_certificates
  89. # - openshift_node_certificates
  90. - name: Copy current OpenShift CA to legacy directory
  91. copy:
  92. src: "{{ openshift.common.config_base }}/master/{{ item }}"
  93. dest: "{{ openshift.common.config_base }}/master/legacy-ca/{{ g_legacy_ca_mktemp.stdout }}-{{ item }}"
  94. remote_src: true
  95. # It is possible that redeploying failed and files may be missing.
  96. # Ignore errors in this case. Files should have been copied to
  97. # legacy-ca directory in previous run.
  98. ignore_errors: true
  99. with_items:
  100. - "ca.crt"
  101. - "ca.key"
  102. - "ca.serial.txt"
  103. - "ca-bundle.crt"
  104. - name: Create temporary directory for creating new CA certificate
  105. hosts: oo_first_master
  106. tasks:
  107. - name: Create temporary directory for creating new CA certificate
  108. command: >
  109. mktemp -d /tmp/openshift-ansible-XXXXXXX
  110. register: g_new_openshift_ca_mktemp
  111. changed_when: false
  112. - include: ../../openshift-master/ca.yml
  113. vars:
  114. # Set openshift_ca_config_dir to a temporary directory where CA
  115. # will be created. We'll replace the existing CA with the CA
  116. # created in the temporary directory.
  117. openshift_ca_config_dir: "{{ hostvars[groups.oo_first_master.0].g_new_openshift_ca_mktemp.stdout }}"
  118. - name: Create temp directory for syncing certs
  119. hosts: localhost
  120. connection: local
  121. become: no
  122. gather_facts: no
  123. tasks:
  124. - name: Create local temp directory for syncing certs
  125. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  126. register: g_master_mktemp
  127. changed_when: false
  128. - name: Retrieve OpenShift CA
  129. hosts: oo_first_master
  130. vars:
  131. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  132. tasks:
  133. - name: Retrieve CA certificate, key, bundle and serial
  134. fetch:
  135. src: "{{ hostvars[openshift_ca_host].g_new_openshift_ca_mktemp.stdout }}/{{ item }}"
  136. dest: "{{ hostvars['localhost'].g_master_mktemp.stdout }}/"
  137. flat: yes
  138. fail_on_missing: yes
  139. validate_checksum: yes
  140. with_items:
  141. - ca.crt
  142. - ca.key
  143. - ca-bundle.crt
  144. - ca.serial.txt
  145. delegate_to: "{{ openshift_ca_host }}"
  146. run_once: true
  147. changed_when: false
  148. - name: Distribute OpenShift CA to masters
  149. hosts: oo_masters_to_config
  150. vars:
  151. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  152. tasks:
  153. - name: Deploy CA certificate, key, bundle and serial
  154. copy:
  155. src: "{{ hostvars['localhost'].g_master_mktemp.stdout }}/{{ item }}"
  156. dest: "{{ openshift.common.config_base }}/master/"
  157. with_items:
  158. - ca.crt
  159. - ca.key
  160. - ca-bundle.crt
  161. - ca.serial.txt
  162. - name: Update master client kubeconfig CA data
  163. kubeclient_ca:
  164. client_path: "{{ openshift.common.config_base }}/master/openshift-master.kubeconfig"
  165. ca_path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  166. - name: Update admin client kubeconfig CA data
  167. kubeclient_ca:
  168. client_path: "{{ openshift.common.config_base }}/master/admin.kubeconfig"
  169. ca_path: "{{ openshift.common.config_base }}/master/ca-bundle.crt"
  170. - name: Lookup default group for ansible_ssh_user
  171. command: "/usr/bin/id -g {{ ansible_ssh_user | quote }}"
  172. changed_when: false
  173. register: _ansible_ssh_user_gid
  174. - set_fact:
  175. client_users: "{{ [ansible_ssh_user, 'root'] | unique }}"
  176. - name: Create the client config dir(s)
  177. file:
  178. path: "~{{ item }}/.kube"
  179. state: directory
  180. mode: 0700
  181. owner: "{{ item }}"
  182. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  183. with_items: "{{ client_users }}"
  184. - name: Copy the admin client config(s)
  185. copy:
  186. src: "{{ openshift.common.config_base }}/master/admin.kubeconfig"
  187. dest: "~{{ item }}/.kube/config"
  188. remote_src: yes
  189. with_items: "{{ client_users }}"
  190. - name: Update the permissions on the admin client config(s)
  191. file:
  192. path: "~{{ item }}/.kube/config"
  193. state: file
  194. mode: 0700
  195. owner: "{{ item }}"
  196. group: "{{ 'root' if item == 'root' else _ansible_ssh_user_gid.stdout }}"
  197. with_items: "{{ client_users }}"
  198. - include: ../../openshift-master/restart.yml
  199. # Do not restart masters when master or etcd certificates were previously expired.
  200. when:
  201. # masters
  202. - ('expired' not in hostvars
  203. | oo_select_keys(groups['oo_masters_to_config'])
  204. | oo_collect('check_results.check_results.ocp_certs')
  205. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/master.server.crt"}))
  206. - ('expired' not in hostvars
  207. | oo_select_keys(groups['oo_masters_to_config'])
  208. | oo_collect('check_results.check_results.ocp_certs')
  209. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/ca-bundle.crt"}))
  210. # etcd
  211. - ('expired' not in (hostvars
  212. | oo_select_keys(groups['etcd'])
  213. | oo_collect('check_results.check_results.etcd')
  214. | oo_collect('health')))
  215. - name: Distribute OpenShift CA certificate to nodes
  216. hosts: oo_nodes_to_config
  217. vars:
  218. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  219. tasks:
  220. - copy:
  221. src: "{{ hostvars['localhost'].g_master_mktemp.stdout }}/ca-bundle.crt"
  222. dest: "{{ openshift.common.config_base }}/node/ca.crt"
  223. - name: Copy OpenShift CA to system CA trust
  224. copy:
  225. src: "{{ item.cert }}"
  226. dest: "/etc/pki/ca-trust/source/anchors/{{ item.id }}-{{ item.cert | basename }}"
  227. remote_src: yes
  228. with_items:
  229. - id: openshift
  230. cert: "{{ openshift.common.config_base }}/node/ca.crt"
  231. notify:
  232. - update ca trust
  233. - name: Update node client kubeconfig CA data
  234. kubeclient_ca:
  235. client_path: "{{ openshift.common.config_base }}/node/system:node:{{ openshift.common.hostname }}.kubeconfig"
  236. ca_path: "{{ openshift.common.config_base }}/node/ca.crt"
  237. handlers:
  238. # Normally this handler would restart docker after updating ca
  239. # trust. We'll do that when we restart nodes to avoid restarting
  240. # docker on all nodes in parallel.
  241. - name: update ca trust
  242. command: update-ca-trust
  243. - name: Delete temporary directory on CA host
  244. hosts: oo_first_master
  245. tasks:
  246. - file:
  247. path: "{{ g_new_openshift_ca_mktemp.stdout }}"
  248. state: absent
  249. - name: Delete temporary directory on localhost
  250. hosts: localhost
  251. connection: local
  252. become: no
  253. gather_facts: no
  254. tasks:
  255. - file:
  256. name: "{{ g_master_mktemp.stdout }}"
  257. state: absent
  258. changed_when: false
  259. - include: ../../openshift-node/restart.yml
  260. # Do not restart nodes when node, master or etcd certificates were previously expired.
  261. when:
  262. # nodes
  263. - ('expired' not in hostvars
  264. | oo_select_keys(groups['oo_nodes_to_config'])
  265. | oo_collect('check_results.check_results.ocp_certs')
  266. | oo_collect('health', {'path':hostvars[groups.oo_nodes_to_config.0].openshift.common.config_base ~ "/node/server.crt"}))
  267. - ('expired' not in hostvars
  268. | oo_select_keys(groups['oo_nodes_to_config'])
  269. | oo_collect('check_results.check_results.ocp_certs')
  270. | oo_collect('health', {'path':hostvars[groups.oo_nodes_to_config.0].openshift.common.config_base ~ "/node/ca.crt"}))
  271. # masters
  272. - ('expired' not in hostvars
  273. | oo_select_keys(groups['oo_masters_to_config'])
  274. | oo_collect('check_results.check_results.ocp_certs')
  275. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/master.server.crt"}))
  276. - ('expired' not in hostvars
  277. | oo_select_keys(groups['oo_masters_to_config'])
  278. | oo_collect('check_results.check_results.ocp_certs')
  279. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/ca-bundle.crt"}))
  280. # etcd
  281. - ('expired' not in (hostvars
  282. | oo_select_keys(groups['etcd'])
  283. | oo_collect('check_results.check_results.etcd')
  284. | oo_collect('health')))