redeploy-ca.yml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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: Distribute etcd CA to etcd hosts
  33. hosts: oo_etcd_to_config
  34. tasks:
  35. - import_role:
  36. name: etcd
  37. tasks_from: distribute_ca.yml
  38. vars:
  39. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  40. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  41. - import_playbook: restart.yml
  42. # Do not restart etcd when etcd certificates were previously expired.
  43. when: ('expired' not in (hostvars
  44. | lib_utils_oo_select_keys(groups['etcd'])
  45. | lib_utils_oo_collect('check_results.check_results.etcd')
  46. | lib_utils_oo_collect('health')))
  47. - name: Retrieve etcd CA certificate
  48. hosts: oo_first_etcd
  49. tasks:
  50. - import_role:
  51. name: etcd
  52. tasks_from: retrieve_ca_certificates.yml
  53. vars:
  54. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  55. - name: Distribute etcd CA to masters
  56. hosts: oo_masters_to_config
  57. vars:
  58. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  59. tasks:
  60. - name: Deploy etcd CA
  61. copy:
  62. src: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}/ca.crt"
  63. dest: "{{ openshift.common.config_base }}/master/master.etcd-ca.crt"
  64. when: groups.oo_etcd_to_config | default([]) | length > 0
  65. - name: Delete temporary directory on localhost
  66. hosts: localhost
  67. connection: local
  68. gather_facts: no
  69. tasks:
  70. - file:
  71. name: "{{ g_etcd_mktemp.stdout }}"
  72. state: absent
  73. changed_when: false
  74. - import_playbook: ../../openshift-master/private/restart.yml
  75. # Do not restart masters when master or etcd certificates were previously expired.
  76. when:
  77. # masters
  78. - ('expired' not in hostvars
  79. | lib_utils_oo_select_keys(groups['oo_masters_to_config'])
  80. | lib_utils_oo_collect('check_results.check_results.ocp_certs')
  81. | lib_utils_oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/master.server.crt"}))
  82. - ('expired' not in hostvars
  83. | lib_utils_oo_select_keys(groups['oo_masters_to_config'])
  84. | lib_utils_oo_collect('check_results.check_results.ocp_certs')
  85. | lib_utils_oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/ca-bundle.crt"}))
  86. # etcd
  87. - ('expired' not in (hostvars
  88. | lib_utils_oo_select_keys(groups['etcd'])
  89. | lib_utils_oo_collect('check_results.check_results.etcd')
  90. | lib_utils_oo_collect('health')))