redeploy-ca.yml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. tasks:
  16. - import_role:
  17. name: etcd
  18. tasks_from: backup_ca_certificates.yml
  19. - import_role:
  20. name: etcd
  21. tasks_from: remove_ca_certificates.yml
  22. - import_playbook: ca.yml
  23. - name: Create temp directory for syncing certs
  24. hosts: localhost
  25. connection: local
  26. gather_facts: no
  27. tasks:
  28. - name: Create local temp directory for syncing certs
  29. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  30. register: g_etcd_mktemp
  31. changed_when: false
  32. - name: Chmod local temp directory for syncing certs
  33. local_action: command chmod 777 "{{ g_etcd_mktemp.stdout }}"
  34. changed_when: false
  35. - name: Distribute etcd CA to etcd hosts
  36. hosts: oo_etcd_to_config
  37. tasks:
  38. - import_role:
  39. name: etcd
  40. tasks_from: distribute_ca.yml
  41. vars:
  42. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  43. - import_playbook: restart.yml
  44. # Do not restart etcd when etcd certificates were previously expired.
  45. when: ('expired' not in (hostvars
  46. | lib_utils_oo_select_keys(groups['etcd'])
  47. | lib_utils_oo_collect('check_results.check_results.etcd')
  48. | lib_utils_oo_collect('health')))
  49. - name: Retrieve etcd CA certificate
  50. hosts: oo_first_etcd
  51. tasks:
  52. - import_role:
  53. name: etcd
  54. tasks_from: retrieve_ca_certificates.yml
  55. vars:
  56. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  57. - name: Distribute etcd CA to masters
  58. hosts: oo_masters_to_config
  59. roles:
  60. - openshift_facts
  61. tasks:
  62. - name: Deploy etcd CA
  63. copy:
  64. src: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}/ca.crt"
  65. dest: "{{ openshift.common.config_base }}/master/master.etcd-ca.crt"
  66. when: groups.oo_etcd_to_config | default([]) | length > 0
  67. - name: Delete temporary directory on localhost
  68. hosts: localhost
  69. connection: local
  70. gather_facts: no
  71. tasks:
  72. - file:
  73. name: "{{ g_etcd_mktemp.stdout }}"
  74. state: absent
  75. changed_when: false
  76. - import_playbook: ../../openshift-master/private/restart.yml
  77. # Do not restart masters when master or etcd certificates were previously expired.
  78. when:
  79. # masters
  80. - ('expired' not in hostvars
  81. | lib_utils_oo_select_keys(groups['oo_masters_to_config'])
  82. | lib_utils_oo_collect('check_results.check_results.ocp_certs')
  83. | lib_utils_oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/master.server.crt"}))
  84. - ('expired' not in hostvars
  85. | lib_utils_oo_select_keys(groups['oo_masters_to_config'])
  86. | lib_utils_oo_collect('check_results.check_results.ocp_certs')
  87. | lib_utils_oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/ca-bundle.crt"}))
  88. # etcd
  89. - ('expired' not in (hostvars
  90. | lib_utils_oo_select_keys(groups['etcd'])
  91. | lib_utils_oo_collect('check_results.check_results.etcd')
  92. | lib_utils_oo_collect('health')))