backup.yml 2.7 KB

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