backup_etcd.yml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. ---
  2. - name: Evaluate additional groups for upgrade
  3. hosts: localhost
  4. connection: local
  5. become: no
  6. tasks:
  7. - name: Evaluate etcd_hosts_to_backup
  8. add_host:
  9. name: "{{ item }}"
  10. groups: etcd_hosts_to_backup
  11. with_items: groups.oo_etcd_to_config if groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config | length > 0 else groups.oo_first_master
  12. - name: Backup etcd
  13. hosts: etcd_hosts_to_backup
  14. vars:
  15. embedded_etcd: "{{ hostvars[groups.oo_first_master.0].openshift.master.embedded_etcd }}"
  16. timestamp: "{{ lookup('pipe', 'date +%Y%m%d%H%M%S') }}"
  17. roles:
  18. - openshift_facts
  19. tasks:
  20. # Ensure we persist the etcd role for this host in openshift_facts
  21. - openshift_facts:
  22. role: etcd
  23. local_facts: {}
  24. when: "'etcd' not in openshift"
  25. - stat: path=/var/lib/openshift
  26. register: var_lib_openshift
  27. - stat: path=/var/lib/origin
  28. register: var_lib_origin
  29. - name: Create origin symlink if necessary
  30. file: src=/var/lib/openshift/ dest=/var/lib/origin state=link
  31. when: var_lib_openshift.stat.exists == True and var_lib_origin.stat.exists == False
  32. # TODO: replace shell module with command and update later checks
  33. # We assume to be using the data dir for all backups.
  34. - name: Check available disk space for etcd backup
  35. shell: df --output=avail -k {{ openshift.common.data_dir }} | tail -n 1
  36. register: avail_disk
  37. # TODO: replace shell module with command and update later checks
  38. - name: Check current embedded etcd disk usage
  39. shell: du -k {{ openshift.etcd.etcd_data_dir }} | tail -n 1 | cut -f1
  40. register: etcd_disk_usage
  41. when: embedded_etcd | bool
  42. - name: Abort if insufficient disk space for etcd backup
  43. fail:
  44. msg: >
  45. {{ etcd_disk_usage.stdout }} Kb disk space required for etcd backup,
  46. {{ avail_disk.stdout }} Kb available.
  47. when: (embedded_etcd | bool) and (etcd_disk_usage.stdout|int > avail_disk.stdout|int)
  48. - name: Install etcd (for etcdctl)
  49. action: "{{ ansible_pkg_mgr }} name=etcd state=latest"
  50. when: not openshift.common.is_atomic | bool
  51. - name: Generate etcd backup
  52. command: >
  53. etcdctl backup --data-dir={{ openshift.etcd.etcd_data_dir }}
  54. --backup-dir={{ openshift.common.data_dir }}/etcd-backup-{{ timestamp }}
  55. - set_fact:
  56. etcd_backup_complete: True
  57. - name: Display location of etcd backup
  58. debug:
  59. msg: "Etcd backup created in {{ openshift.common.data_dir }}/etcd-backup-{{ timestamp }}"
  60. - name: Gate on etcd backup
  61. hosts: localhost
  62. connection: local
  63. become: no
  64. tasks:
  65. - set_fact:
  66. etcd_backup_completed: "{{ hostvars
  67. | oo_select_keys(groups.etcd_hosts_to_backup)
  68. | oo_collect('inventory_hostname', {'etcd_backup_complete': true}) }}"
  69. - set_fact:
  70. etcd_backup_failed: "{{ groups.etcd_hosts_to_backup | difference(etcd_backup_completed) }}"
  71. - fail:
  72. msg: "Upgrade cannot continue. The following hosts did not complete etcd backup: {{ etcd_backup_failed | join(',') }}"
  73. when: etcd_backup_failed | length > 0