feat(podman_prometheus): add hostname labels to targets
Some checks failed
Ansible Lint Check / lint (push) Failing after 1m2s

This commit is contained in:
Iain Learmonth 2026-05-25 17:23:34 +01:00
parent c404d08b89
commit 0d92344f16
7 changed files with 74 additions and 79 deletions

View file

@ -38,3 +38,15 @@
when: tailscale_status.rc != 0 or "Logged out" in tailscale_status.stdout
no_log: yes # Hide auth key from logs
become: true
- name: Tailscale | PATCH | Add Tailscale interface to internal zone
ansible.posix.firewalld:
zone: internal
interface: "{{ item }}"
permanent: yes
immediate: yes
state: enabled
with_items:
- tailscale0
become: true