Commit b9f14892 authored by rjshrjndrn's avatar rjshrjndrn
Browse files

Issue #000 feat: cleanup for backup

parent cd0d2beb
No related merge requests found
Showing with 1 addition and 10 deletions
+1 -10
---
# tasks file for ansible/roles/prometheus-backup-v2
# Issue: https://github.com/prometheus/prometheus/issues/5686
- name: preparing snapshot
uri:
url: "{{ prometheus_url }}/api/v1/admin/tsdb/snapshot"
method: POST
register: temp_snap
- name: taking snapshot
uri:
url: "{{ prometheus_url }}/api/v1/admin/tsdb/snapshot?skip_head=True"
......@@ -32,11 +26,8 @@
- name: Deleting snapshot
file:
path: "{{ prometheus_data_dir }}/snapshots/{{ item }}"
path: "{{ prometheus_data_dir }}/snapshots/{{ snapshot_name }}"
state: absent
with_items:
- "{{ snapshot_name }}"
- "{{ temp_snap.json.data.name }}"
- name: Deleting archive snapshot
file:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment