etcd-ca.yml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. - name: Generate new etcd CA
  23. hosts: oo_first_etcd
  24. roles:
  25. - role: openshift_etcd_facts
  26. tasks:
  27. - include_role:
  28. name: etcd
  29. tasks_from: ca
  30. vars:
  31. etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
  32. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  33. etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
  34. when:
  35. - etcd_ca_setup | default(True) | bool
  36. - name: Create temp directory for syncing certs
  37. hosts: localhost
  38. connection: local
  39. become: no
  40. gather_facts: no
  41. tasks:
  42. - name: Create local temp directory for syncing certs
  43. local_action: command mktemp -d /tmp/openshift-ansible-XXXXXXX
  44. register: g_etcd_mktemp
  45. changed_when: false
  46. - name: Distribute etcd CA to etcd hosts
  47. hosts: oo_etcd_to_config
  48. tasks:
  49. - include_role:
  50. name: etcd
  51. tasks_from: distribute_ca
  52. vars:
  53. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  54. etcd_sync_cert_dir: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}"
  55. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  56. - include: ../../openshift-etcd/restart.yml
  57. # Do not restart etcd when etcd certificates were previously expired.
  58. when: ('expired' not in (hostvars
  59. | oo_select_keys(groups['etcd'])
  60. | oo_collect('check_results.check_results.etcd')
  61. | oo_collect('health')))
  62. - name: Retrieve etcd CA certificate
  63. hosts: oo_first_etcd
  64. tasks:
  65. - include_role:
  66. name: etcd
  67. tasks_from: retrieve_ca_certificates
  68. vars:
  69. etcd_sync_cert_dir: hostvars['localhost'].g_etcd_mktemp.stdout
  70. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  71. - name: Distribute etcd CA to masters
  72. hosts: oo_masters_to_config
  73. vars:
  74. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  75. tasks:
  76. - name: Deploy etcd CA
  77. copy:
  78. src: "{{ hostvars['localhost'].g_etcd_mktemp.stdout }}/ca.crt"
  79. dest: "{{ openshift.common.config_base }}/master/master.etcd-ca.crt"
  80. when: groups.oo_etcd_to_config | default([]) | length > 0
  81. - name: Delete temporary directory on localhost
  82. hosts: localhost
  83. connection: local
  84. become: no
  85. gather_facts: no
  86. tasks:
  87. - file:
  88. name: "{{ g_etcd_mktemp.stdout }}"
  89. state: absent
  90. changed_when: false
  91. - include: ../../openshift-master/restart.yml
  92. # Do not restart masters when master or etcd certificates were previously expired.
  93. when:
  94. # masters
  95. - ('expired' not in hostvars
  96. | oo_select_keys(groups['oo_masters_to_config'])
  97. | oo_collect('check_results.check_results.ocp_certs')
  98. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/master.server.crt"}))
  99. - ('expired' not in hostvars
  100. | oo_select_keys(groups['oo_masters_to_config'])
  101. | oo_collect('check_results.check_results.ocp_certs')
  102. | oo_collect('health', {'path':hostvars[groups.oo_first_master.0].openshift.common.config_base ~ "/master/ca-bundle.crt"}))
  103. # etcd
  104. - ('expired' not in (hostvars
  105. | oo_select_keys(groups['etcd'])
  106. | oo_collect('check_results.check_results.etcd')
  107. | oo_collect('health')))