backup.yml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. ---
  2. # set the etcd backup directory name here in case the tag or sufix consists of dynamic value that changes over time
  3. # e.g. openshift-backup-{{ lookup('pipe', 'date +%Y%m%d%H%M%S') }} value will change every second so if the date changes
  4. # right after setting l_etcd_incontainer_backup_dir and before l_etcd_backup_dir facts, the backup directory name is different
  5. - set_fact:
  6. l_backup_dir_name: "openshift-backup-{{ r_etcd_common_backup_tag }}{{ r_etcd_common_backup_sufix_name }}"
  7. - set_fact:
  8. l_etcd_data_dir: "{{ etcd_data_dir }}{{ '/etcd.etcd' if r_etcd_common_etcd_runtime == 'runc' else '' }}"
  9. - set_fact:
  10. l_etcd_incontainer_data_dir: "{{ etcd_data_dir }}"
  11. - set_fact:
  12. l_etcd_incontainer_backup_dir: "{{ l_etcd_incontainer_data_dir }}/{{ l_backup_dir_name }}"
  13. - set_fact:
  14. l_etcd_backup_dir: "{{ l_etcd_data_dir }}/{{ l_backup_dir_name }}"
  15. # TODO: replace shell module with command and update later checks
  16. - name: Check available disk space for etcd backup
  17. shell: df --output=avail -k {{ l_etcd_data_dir }} | tail -n 1
  18. register: l_avail_disk
  19. # AUDIT:changed_when: `false` because we are only inspecting
  20. # state, not manipulating anything
  21. changed_when: false
  22. # TODO: replace shell module with command and update later checks
  23. - name: Check current etcd disk usage
  24. shell: du --exclude='*openshift-backup*' -k {{ l_etcd_data_dir }} | tail -n 1 | cut -f1
  25. register: l_etcd_disk_usage
  26. # AUDIT:changed_when: `false` because we are only inspecting
  27. # state, not manipulating anything
  28. changed_when: false
  29. - name: Abort if insufficient disk space for etcd backup
  30. fail:
  31. msg: >
  32. {{ l_etcd_disk_usage.stdout|int*2 }} Kb disk space required for etcd backup,
  33. {{ l_avail_disk.stdout }} Kb available.
  34. when: l_etcd_disk_usage.stdout|int*2 > l_avail_disk.stdout|int
  35. # For non containerized and non embedded we should have the correct version of
  36. # etcd installed already. So don't do anything.
  37. #
  38. # For containerized installs we now exec into etcd_container
  39. #
  40. # For embedded non containerized we need to ensure we have the latest version
  41. # etcd on the host.
  42. - name: Detecting Atomic Host Operating System
  43. stat:
  44. path: /run/ostree-booted
  45. register: l_ostree_booted
  46. - name: Install latest etcd for embedded
  47. package:
  48. name: etcd
  49. state: latest
  50. when:
  51. - r_etcd_common_embedded_etcd | bool
  52. - not l_ostree_booted.stat.exists | bool
  53. - name: Check selinux label of '{{ l_etcd_data_dir }}'
  54. command: >
  55. stat -c '%C' {{ l_etcd_data_dir }}
  56. register: l_etcd_selinux_labels
  57. - debug:
  58. msg: "{{ l_etcd_selinux_labels }}"
  59. - name: Make sure the '{{ l_etcd_data_dir }}' has the proper label
  60. command: >
  61. chcon -t svirt_sandbox_file_t "{{ l_etcd_data_dir }}"
  62. when:
  63. - l_etcd_selinux_labels.rc == 0
  64. - "'svirt_sandbox_file_t' not in l_etcd_selinux_labels.stdout"
  65. - name: Generate etcd backup
  66. command: >
  67. {{ r_etcd_common_etcdctl_command }} backup --data-dir={{ l_etcd_incontainer_data_dir }}
  68. --backup-dir={{ l_etcd_incontainer_backup_dir }}
  69. # According to the docs change you can simply copy snap/db
  70. # https://github.com/openshift/openshift-docs/commit/b38042de02d9780842dce95cfa0ef45d53b58bc6
  71. - name: Check for v3 data store
  72. stat:
  73. path: "{{ l_etcd_data_dir }}/member/snap/db"
  74. register: l_v3_db
  75. - name: Copy etcd v3 data store
  76. command: >
  77. cp -a {{ l_etcd_data_dir }}/member/snap/db
  78. {{ l_etcd_backup_dir }}/member/snap/
  79. when: l_v3_db.stat.exists
  80. - set_fact:
  81. r_etcd_common_backup_complete: True
  82. - name: Display location of etcd backup
  83. debug:
  84. msg: "Etcd backup created in {{ l_etcd_backup_dir }}"