v1.1.0
What's Changed
🚨 Breaking Changes
This changes the label_selector
variable type from string to dictionary to simplify managing the labels to search/filter for on rotation.
Example
Before:
label_selector: "created_by=ansible.hcloud-backup,host={{ inventory_hostname }}"
Now:
label_selector:
created_by: ansible.hcloud-backup
host: "{{ inventory_hostname }}"
Full Changelog: v1.0.4...v1.1.0