etcd-ca.yml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. ---
  2. - name: Check cert expirys
  3. hosts: oo_etcd_to_config:oo_masters_to_config
  4. vars:
  5. openshift_certificate_expiry_show_all: yes
  6. roles:
  7. # Sets 'check_results' per host which contains health status for
  8. # etcd, master and node certificates. We will use 'check_results'
  9. # to determine if any certificates were expired prior to running
  10. # this playbook. Service restarts will be skipped if any
  11. # certificates were previously expired.
  12. - role: openshift_certificate_expiry
  13. - name: Backup existing etcd CA certificate directories
  14. hosts: oo_etcd_to_config
  15. roles:
  16. - role: etcd_common
  17. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  18. tasks:
  19. - name: Determine if CA certificate directory exists
  20. stat:
  21. path: "{{ etcd_ca_dir }}"
  22. register: etcd_ca_certs_dir_stat
  23. - name: Backup generated etcd certificates
  24. command: >
  25. tar -czf {{ etcd_conf_dir }}/etcd-ca-certificate-backup-{{ ansible_date_time.epoch }}.tgz
  26. {{ etcd_ca_dir }}
  27. args:
  28. warn: no
  29. when: etcd_ca_certs_dir_stat.stat.exists | bool
  30. - name: Remove CA certificate directory
  31. file:
  32. path: "{{ etcd_ca_dir }}"
  33. state: absent
  34. when: etcd_ca_certs_dir_stat.stat.exists | bool
  35. - name: Generate new etcd CA
  36. hosts: oo_first_etcd
  37. roles:
  38. - role: openshift_etcd_facts
  39. tasks:
  40. - include_role:
  41. name: etcd
  42. tasks_from: ca
  43. vars:
  44. etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
  45. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  46. etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
  47. when:
  48. - etcd_ca_setup | default(True) | bool
  49. - name: Create temp directory for syncing certs
  50. hosts: localhost
  51. connection: local
  52. become: no
  53. gather_facts: no
  54. tasks:
  55. - name: Create local temp directory for syncing certs
  56. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  57. register: g_etcd_mktemp
  58. changed_when: false
  59. - name: Distribute etcd CA to etcd hosts
  60. hosts: oo_etcd_to_config
  61. vars:
  62. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  63. roles:
  64. - role: etcd_common
  65. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  66. tasks:
  67. - name: Create a tarball of the etcd ca certs
  68. command: >
  69. tar -czvf {{ etcd_conf_dir }}/{{ etcd_ca_name }}.tgz
  70. -C {{ etcd_ca_dir }} .
  71. args:
  72. creates: "{{ etcd_conf_dir }}/{{ etcd_ca_name }}.tgz"
  73. warn: no
  74. delegate_to: "{{ etcd_ca_host }}"
  75. run_once: true
  76. - name: Retrieve etcd ca cert tarball
  77. fetch:
  78. src: "{{ etcd_conf_dir }}/{{ etcd_ca_name }}.tgz"
  79. dest: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}/"
  80. flat: yes
  81. fail_on_missing: yes
  82. validate_checksum: yes
  83. delegate_to: "{{ etcd_ca_host }}"
  84. run_once: true
  85. - name: Ensure ca directory exists
  86. file:
  87. path: "{{ etcd_ca_dir }}"
  88. state: directory
  89. - name: Unarchive etcd ca cert tarballs
  90. unarchive:
  91. src: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}/{{ etcd_ca_name }}.tgz"
  92. dest: "{{ etcd_ca_dir }}"
  93. - name: Read current etcd CA
  94. slurp:
  95. src: "{{ etcd_conf_dir }}/ca.crt"
  96. register: g_current_etcd_ca_output
  97. - name: Read new etcd CA
  98. slurp:
  99. src: "{{ etcd_ca_dir }}/ca.crt"
  100. register: g_new_etcd_ca_output
  101. - copy:
  102. content: "{{ (g_new_etcd_ca_output.content|b64decode) + (g_current_etcd_ca_output.content|b64decode) }}"
  103. dest: "{{ item }}/ca.crt"
  104. with_items:
  105. - "{{ etcd_conf_dir }}"
  106. - "{{ etcd_ca_dir }}"
  107. - include: ../../openshift-etcd/restart.yml
  108. # Do not restart etcd when etcd certificates were previously expired.
  109. when: ('expired' not in (hostvars
  110. | oo_select_keys(groups['etcd'])
  111. | oo_collect('check_results.check_results.etcd')
  112. | oo_collect('health')))
  113. - name: Retrieve etcd CA certificate
  114. hosts: oo_first_etcd
  115. roles:
  116. - role: etcd_common
  117. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  118. tasks:
  119. - name: Retrieve etcd CA certificate
  120. fetch:
  121. src: "{{ etcd_conf_dir }}/ca.crt"
  122. dest: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}/"
  123. flat: yes
  124. fail_on_missing: yes
  125. validate_checksum: yes
  126. - name: Distribute etcd CA to masters
  127. hosts: oo_masters_to_config
  128. vars:
  129. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  130. tasks:
  131. - name: Deploy etcd CA
  132. copy:
  133. src: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}/ca.crt"
  134. dest: "{{ openshift.common.config_base }}/master/master.etcd-ca.crt"
  135. when: groups.oo_etcd_to_config | default([]) | length > 0
  136. - name: Delete temporary directory on localhost
  137. hosts: localhost
  138. connection: local
  139. become: no
  140. gather_facts: no
  141. tasks:
  142. - file:
  143. name: "{{ g_etcd_mktemp.stdout }}"
  144. state: absent
  145. changed_when: false
  146. - include: ../../openshift-master/restart.yml
  147. # Do not restart masters when master certificates were previously expired.
  148. when: ('expired' not in hostvars
  149. | oo_select_keys(groups['oo_masters_to_config'])
  150. | oo_collect('check_results.check_results.ocp_certs')
  151. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/master.server.crt"}))
  152. and
  153. ('expired' not in hostvars
  154. | oo_select_keys(groups['oo_masters_to_config'])
  155. | oo_collect('check_results.check_results.ocp_certs')
  156. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/ca-bundle.crt"}))