etcd-ca.yml 3.5 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. - include_role:
  17. name: etcd
  18. tasks_from: backup_ca_certificates
  19. - include_role:
  20. name: etcd
  21. tasks_from: remove_ca_certificates
  22. - include: ../../openshift-etcd/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
  39. vars:
  40. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  41. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  42. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  43. - include: ../../openshift-etcd/restart.yml
  44. # Do not restart etcd when etcd certificates were previously expired.
  45. when: ('expired' not in (hostvars
  46. | oo_select_keys(groups['etcd'])
  47. | oo_collect('check_results.check_results.etcd')
  48. | oo_collect('health')))
  49. - name: Retrieve etcd CA certificate
  50. hosts: oo_first_etcd
  51. tasks:
  52. - include_role:
  53. name: etcd
  54. tasks_from: retrieve_ca_certificates
  55. vars:
  56. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  57. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  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. become: no
  72. gather_facts: no
  73. tasks:
  74. - file:
  75. name: "{{ g_etcd_mktemp.stdout }}"
  76. state: absent
  77. changed_when: false
  78. - include: ../../openshift-master/restart.yml
  79. # Do not restart masters when master or etcd certificates were previously expired.
  80. when:
  81. # masters
  82. - ('expired' not in hostvars
  83. | oo_select_keys(groups['oo_masters_to_config'])
  84. | oo_collect('check_results.check_results.ocp_certs')
  85. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/master.server.crt"}))
  86. - ('expired' not in hostvars
  87. | oo_select_keys(groups['oo_masters_to_config'])
  88. | oo_collect('check_results.check_results.ocp_certs')
  89. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/ca-bundle.crt"}))
  90. # etcd
  91. - ('expired' not in (hostvars
  92. | oo_select_keys(groups['etcd'])
  93. | oo_collect('check_results.check_results.etcd')
  94. | oo_collect('health')))