backup.yml 3.2 KB

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