redeploy-ca.yml 3.6 KB

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