redeploy-ca.yml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. - include_role:
  17. name: etcd
  18. tasks_from: backup_ca_certificates.yml
  19. - include_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. become: no
  27. gather_facts: no
  28. tasks:
  29. - name: Create local temp directory for syncing certs
  30. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  31. register: g_etcd_mktemp
  32. changed_when: false
  33. - name: Distribute etcd CA to etcd hosts
  34. hosts: oo_etcd_to_config
  35. tasks:
  36. - include_role:
  37. name: etcd
  38. tasks_from: distribute_ca.yml
  39. vars:
  40. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  41. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  42. - import_playbook: restart.yml
  43. # Do not restart etcd when etcd certificates were previously expired.
  44. when: ('expired' not in (hostvars
  45. | lib_utils_oo_select_keys(groups['etcd'])
  46. | lib_utils_oo_collect('check_results.check_results.etcd')
  47. | lib_utils_oo_collect('health')))
  48. - name: Retrieve etcd CA certificate
  49. hosts: oo_first_etcd
  50. tasks:
  51. - include_role:
  52. name: etcd
  53. tasks_from: retrieve_ca_certificates.yml
  54. vars:
  55. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  56. - name: Distribute etcd CA to masters
  57. hosts: oo_masters_to_config
  58. vars:
  59. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  60. tasks:
  61. - name: Deploy etcd CA
  62. copy:
  63. src: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}/ca.crt"
  64. dest: "{{ openshift.common.config_base }}/master/master.etcd-ca.crt"
  65. when: groups.oo_etcd_to_config | default([]) | length > 0
  66. - name: Delete temporary directory on localhost
  67. hosts: localhost
  68. connection: local
  69. become: no
  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')))