23 lines
719 B
YAML
23 lines
719 B
YAML
# vim:ft=ansible:
|
|
|
|
# A list of stanzas to put in the keepalived.conf file
|
|
keepalived_stanzas: []
|
|
#keepalived_stanzas:
|
|
# # Name of the vrrp instance
|
|
# - name: VI_1
|
|
# # Node state. Should be "MASTER" on the master and "BACKUP" on backup machines
|
|
# state: BACKUP
|
|
# # The interface to assign the VIP to
|
|
# interface: eth0
|
|
# # The virtual router ID
|
|
# virtual_router_id: 51
|
|
# # Node priority. Should be assigned differently for each host
|
|
# priority: 100
|
|
# # Advertisement interval in seconds
|
|
# advert_int: 1
|
|
# # Keepalived authentication password
|
|
# auth_pass: mySuperSecretPassword
|
|
# # The VIP to pass around. Include the subnet mask like so:
|
|
# # 192.168.0.5/24
|
|
# vip: 1.2.3.4
|