Skip to content

v1.1.0

Compare
Choose a tag to compare
@kimdre kimdre released this 29 Jun 10:43
· 23 commits to main since this release
1b46839

What's Changed

🚨 Breaking Changes

  • feat!: change label_selector from string to dict by @kimdre in #4

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