backup.yml 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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 and non embedded we should have the correct version of
  24. # etcd installed already. So don't do anything.
  25. #
  26. # For containerized installs we now exec into etcd_container
  27. #
  28. # For embedded non containerized we need to ensure we have the latest version
  29. # etcd on the host.
  30. - name: Detecting Atomic Host Operating System
  31. stat:
  32. path: /run/ostree-booted
  33. register: l_ostree_booted
  34. - name: Install latest etcd for embedded
  35. package:
  36. name: etcd
  37. state: latest
  38. when:
  39. - r_etcd_common_embedded_etcd | bool
  40. - not l_ostree_booted.stat.exists | bool
  41. - name: Check selinux label of '{{ etcd_data_dir }}'
  42. command: >
  43. stat -c '%C' {{ etcd_data_dir }}
  44. register: l_etcd_selinux_labels
  45. - debug:
  46. msg: "{{ l_etcd_selinux_labels }}"
  47. - name: Make sure the '{{ etcd_data_dir }}' has the proper label
  48. command: >
  49. chcon -t svirt_sandbox_file_t "{{ etcd_data_dir }}"
  50. when:
  51. - l_etcd_selinux_labels.rc == 0
  52. - "'svirt_sandbox_file_t' not in l_etcd_selinux_labels.stdout"
  53. - name: Generate etcd backup
  54. command: >
  55. {{ r_etcd_common_etcdctl_command }} backup --data-dir={{ l_etcd_incontainer_data_dir }}
  56. --backup-dir={{ l_etcd_incontainer_backup_dir }}
  57. # According to the docs change you can simply copy snap/db
  58. # https://github.com/openshift/openshift-docs/commit/b38042de02d9780842dce95cfa0ef45d53b58bc6
  59. - name: Check for v3 data store
  60. stat:
  61. path: "{{ etcd_data_dir }}/member/snap/db"
  62. register: l_v3_db
  63. - name: Copy etcd v3 data store
  64. command: >
  65. cp -a {{ etcd_data_dir }}/member/snap/db
  66. {{ l_etcd_backup_dir }}/member/snap/
  67. when: l_v3_db.stat.exists
  68. - set_fact:
  69. r_etcd_common_backup_complete: True
  70. - name: Display location of etcd backup
  71. debug:
  72. msg: "Etcd backup created in {{ l_etcd_backup_dir }}"