Initial Push of scraped files for ansible

This commit is contained in:
janic
2021-12-06 10:08:12 +01:00
parent 7aa8e04057
commit dc5b5a665d
7 changed files with 7753 additions and 2 deletions

7685
files/templates/facts.yaml Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,24 @@
vrrp_track_process track_k3s {
process k3s-server
weight 100
}
vrrp_instance rpis_vip {
state {% if ansible_hostname == 'node0' %}MASTER{% else %}BACKUP{% endif %}
interface eth0
virtual_router_id 1{{ ansible_hostname[-1] }}
priority {% if ansible_hostname == 'node0' %}11{% else %}10{% endif %}
advert_int 1
authentication {
auth_type PASS
auth_pass 5up3r53cr3tPW!
}
virtual_ipaddress {
192.168.1.10/24
}
track_process {
track_k3s
}
}