Files
dsk-iac/kubespray/roles/etcd/handlers/backup_cleanup.yml
havelight-ee 4c32a7239d update
2023-05-30 14:44:26 +09:00

12 lines
326 B
YAML

---
- name: Cleanup etcd backups
command: /bin/true
notify:
- Remove old etcd backups
- name: Remove old etcd backups
shell:
chdir: "{{ etcd_backup_prefix }}"
cmd: "find . -name 'etcd-*' -type d | sort -n | head -n -{{ etcd_backup_retention_count }} | xargs rm -rf"
when: etcd_backup_retention_count >= 0