etcd.yml 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. ---
  2. - name: Backup and remove generated etcd certificates
  3. hosts: oo_first_etcd
  4. any_errors_fatal: true
  5. roles:
  6. - role: etcd_common
  7. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  8. post_tasks:
  9. - name: Determine if generated etcd certificates exist
  10. stat:
  11. path: "{{ etcd_conf_dir }}/generated_certs"
  12. register: etcd_generated_certs_dir_stat
  13. - name: Backup generated etcd certificates
  14. command: >
  15. tar -czf {{ etcd_conf_dir }}/etcd-generated-certificate-backup-{{ ansible_date_time.epoch }}.tgz
  16. {{ etcd_conf_dir }}/generated_certs
  17. args:
  18. warn: no
  19. when: etcd_generated_certs_dir_stat.stat.exists | bool
  20. - name: Remove generated etcd certificates
  21. file:
  22. path: "{{ item }}"
  23. state: absent
  24. with_items:
  25. - "{{ etcd_conf_dir }}/generated_certs"
  26. - name: Backup and removed deployed etcd certificates
  27. hosts: oo_etcd_to_config
  28. any_errors_fatal: true
  29. roles:
  30. - role: etcd_common
  31. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  32. post_tasks:
  33. - name: Backup etcd certificates
  34. command: >
  35. tar -czvf /etc/etcd/etcd-server-certificate-backup-{{ ansible_date_time.epoch }}.tgz
  36. {{ etcd_conf_dir }}/ca.crt
  37. {{ etcd_conf_dir }}/server.crt
  38. {{ etcd_conf_dir }}/server.key
  39. {{ etcd_conf_dir }}/peer.crt
  40. {{ etcd_conf_dir }}/peer.key
  41. args:
  42. warn: no
  43. - name: Redeploy etcd certificates
  44. hosts: oo_etcd_to_config
  45. any_errors_fatal: true
  46. tasks:
  47. - include_role:
  48. name: etcd
  49. tasks_from: server_certificates
  50. vars:
  51. etcd_certificates_redeploy: true
  52. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  53. etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"
  54. etcd_certificates_etcd_hosts: "{{ groups.oo_etcd_to_config | default([], true) }}"
  55. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  56. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  57. - name: Redeploy etcd client certificates for masters
  58. hosts: oo_masters_to_config
  59. any_errors_fatal: true
  60. roles:
  61. - role: openshift_etcd_facts
  62. - role: openshift_etcd_client_certificates
  63. etcd_certificates_redeploy: true
  64. etcd_ca_host: "{{ groups.oo_etcd_to_config.0 }}"
  65. etcd_cert_subdir: "openshift-master-{{ openshift.common.hostname }}"
  66. etcd_cert_config_dir: "{{ openshift.common.config_base }}/master"
  67. etcd_cert_prefix: "master.etcd-"
  68. openshift_ca_host: "{{ groups.oo_first_master.0 }}"
  69. openshift_master_count: "{{ openshift.master.master_count | default(groups.oo_masters | length) }}"
  70. r_etcd_common_etcd_runtime: "{{ openshift.common.etcd_runtime }}"
  71. when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config