kubeasz/roles/lb/templates/keepalived-backup.conf.j2

21 lines
435 B
Plaintext
Raw Normal View History

2017-11-11 19:14:21 +08:00
global_defs {
router_id lb-backup
2017-11-11 19:14:21 +08:00
}
vrrp_instance VI-kube-master {
state BACKUP
priority 110
unicast_src_ip {{ inventory_hostname }}
unicast_peer {
{% for h in groups['lb'] %}{% if h != inventory_hostname %}{{ h }}{% endif %}{% endfor %}
}
2017-11-11 19:14:21 +08:00
dont_track_primary
interface {{ LB_IF }}
virtual_router_id {{ ROUTER_ID }}
2017-11-11 19:14:21 +08:00
advert_int 3
virtual_ipaddress {
2018-04-10 18:06:12 +08:00
{{ MASTER_IP }}
2017-11-11 19:14:21 +08:00
}
}