backup.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. ---
  2. - include_tasks: vars.yml
  3. # TODO: replace shell module with command and update later checks
  4. - name: Check available disk space for etcd backup
  5. shell: df --output=avail -k {{ etcd_data_dir }} | tail -n 1
  6. register: l_avail_disk
  7. # AUDIT:changed_when: `false` because we are only inspecting
  8. # state, not manipulating anything
  9. changed_when: false
  10. # TODO: replace shell module with command and update later checks
  11. - name: Check current etcd disk usage
  12. shell: du --exclude='*openshift-backup*' -k {{ etcd_data_dir }} | tail -n 1 | cut -f1
  13. register: l_etcd_disk_usage
  14. # AUDIT:changed_when: `false` because we are only inspecting
  15. # state, not manipulating anything
  16. changed_when: false
  17. - name: Abort if insufficient disk space for etcd backup
  18. fail:
  19. msg: >
  20. {{ l_etcd_disk_usage.stdout|int*2 }} Kb disk space required for etcd backup,
  21. {{ l_avail_disk.stdout }} Kb available.
  22. when: l_etcd_disk_usage.stdout|int*2 > l_avail_disk.stdout|int
  23. # For non containerized we should have the correct version of
  24. # etcd installed already. So don't do anything.
  25. #
  26. # For static pod installs we now exec into etcd_container
  27. - name: Check selinux label of '{{ etcd_data_dir }}'
  28. command: >
  29. stat -c '%C' {{ etcd_data_dir }}
  30. register: l_etcd_selinux_labels
  31. - debug:
  32. msg: "{{ l_etcd_selinux_labels }}"
  33. - name: Make sure the '{{ etcd_data_dir }}' has the proper label
  34. command: >
  35. chcon -t svirt_sandbox_file_t "{{ etcd_data_dir }}"
  36. when:
  37. - l_etcd_selinux_labels.rc == 0
  38. - "'svirt_sandbox_file_t' not in l_etcd_selinux_labels.stdout"
  39. - name: Generate etcd backup
  40. command: >
  41. {{ r_etcd_common_etcdctl_command }} backup --data-dir={{ l_etcd_incontainer_data_dir }}
  42. --backup-dir={{ l_etcd_incontainer_backup_dir }}
  43. # According to the docs change you can simply copy snap/db
  44. # https://github.com/openshift/openshift-docs/commit/b38042de02d9780842dce95cfa0ef45d53b58bc6
  45. - name: Check for v3 data store
  46. stat:
  47. path: "{{ etcd_data_dir }}/member/snap/db"
  48. get_checksum: false
  49. get_attributes: false
  50. get_mime: false
  51. register: l_v3_db
  52. - name: Copy etcd v3 data store
  53. command: >
  54. cp -a {{ etcd_data_dir }}/member/snap/db
  55. {{ l_etcd_backup_dir }}/member/snap/
  56. when: l_v3_db.stat.exists
  57. - set_fact:
  58. r_etcd_common_backup_complete: True
  59. - name: Display location of etcd backup
  60. debug:
  61. msg: "Etcd backup created in {{ l_etcd_backup_dir }}"