backup.yml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. - name: Backup etcd
  2. hosts: etcd_hosts_to_backup
  3. vars:
  4. embedded_etcd: "{{ groups.oo_etcd_to_config | default([]) | length == 0 }}"
  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. # TODO - Refactor containerized backup to use etcd_container to backup the data so we don't rely on
  38. # the host's etcdctl binary which may be of a different version.
  39. # for non containerized and non embedded we should have the correct version of etcd installed already
  40. # For embedded we need to use the latest because OCP 3.3 uses a version of etcd that can only be backed
  41. # up with etcd-3.x
  42. - name: Install latest etcd for containerized or embedded
  43. package: name=etcd state=latest
  44. when: ( openshift.common.is_containerized and not openshift.common.is_atomic ) or embedded_etcd | bool
  45. - name: Generate etcd backup
  46. command: >
  47. etcdctl backup --data-dir={{ openshift.etcd.etcd_data_dir }}
  48. --backup-dir={{ openshift.common.data_dir }}/etcd-backup-{{ backup_tag | default('') }}{{ timestamp }}
  49. - set_fact:
  50. etcd_backup_complete: True
  51. - name: Display location of etcd backup
  52. debug:
  53. msg: "Etcd backup created in {{ openshift.common.data_dir }}/etcd-backup-{{ backup_tag | default('') }}{{ timestamp }}"
  54. - name: Gate on etcd backup
  55. hosts: localhost
  56. connection: local
  57. become: no
  58. tasks:
  59. - set_fact:
  60. etcd_backup_completed: "{{ hostvars
  61. | oo_select_keys(groups.etcd_hosts_to_backup)
  62. | oo_collect('inventory_hostname', {'etcd_backup_complete': true}) }}"
  63. - set_fact:
  64. etcd_backup_failed: "{{ groups.etcd_hosts_to_backup | difference(etcd_backup_completed) }}"
  65. - fail:
  66. msg: "Upgrade cannot continue. The following hosts did not complete etcd backup: {{ etcd_backup_failed | join(',') }}"
  67. when: etcd_backup_failed | length > 0