Backup each volume in its own bucket.

This commit is contained in:
yohan 2024-04-14 22:21:40 +02:00
parent 70fa7c96e9
commit 6a2107e703

View File

@ -1,19 +1,25 @@
--- ---
- name: Find hard links in /mnt/volumes/{{ item }} - name: Find hard links in /mnt/volumes/{{ item }}/data
ansible.builtin.command: "find '/mnt/volumes/{{ item }}' -type f -links +1" ansible.builtin.command: "find '/mnt/volumes/{{ item }}/data' -type f -links +1"
register: find_hard_links register: find_hard_links
# Duplicity does not support hard links # Duplicity does not support hard links
- name: Assert that there is no hard links in /mnt/volumes/{{ item }} - name: Assert that there is no hard links in /mnt/volumes/{{ item }}/data
ansible.builtin.assert: ansible.builtin.assert:
that: that:
- find_hard_links.stdout | length == 0 - find_hard_links.stdout | length == 0
msg: "Duplicity does not support hard links." msg: "Duplicity does not support hard links."
- name: Backup /mnt/volumes/{{ item }} with duplicity - name: Create SWIFT bucket
ansible.builtin.command: "duplicity --num-retries 3 --full-if-older-than 1M --progress --archive-dir {{ ARCHIVE_DIR }} --name {{ item }} --allow-source-mismatch '/mnt/volumes/{{ item }}' swift://{{ lookup('env','BACKUP_WORKFLOW') }}" openstack.cloud.object_container:
name: "{{ item }}"
state: present
environment: "{{ DUPLICITY_ENVIRONMENT }}"
- name: Backup /mnt/volumes/{{ item }}/data with duplicity
ansible.builtin.command: "duplicity --num-retries 3 --full-if-older-than 1M --progress --archive-dir {{ ARCHIVE_DIR }} --name {{ item }} --allow-source-mismatch '/mnt/volumes/{{ item }}/data' swift://{{ item }}"
environment: "{{ DUPLICITY_ENVIRONMENT }}" environment: "{{ DUPLICITY_ENVIRONMENT }}"
- name: Clean old duplicity backups for {{ item }} - name: Clean old duplicity backups for {{ item }}
ansible.builtin.command: "duplicity remove-older-than 2M --archive-dir {{ ARCHIVE_DIR }} --name {{ item }} --allow-source-mismatch --force swift://{{ lookup('env','BACKUP_WORKFLOW') }}" ansible.builtin.command: "duplicity remove-older-than 2M --archive-dir {{ ARCHIVE_DIR }} --name {{ item }} --allow-source-mismatch --force swift://{{ item }}"
environment: "{{ DUPLICITY_ENVIRONMENT }}" environment: "{{ DUPLICITY_ENVIRONMENT }}"