Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created June 11, 2020 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velotiotech/3b6062287a414fef03653a37bef1ecc7 to your computer and use it in GitHub Desktop.
Save velotiotech/3b6062287a414fef03653a37bef1ecc7 to your computer and use it in GitHub Desktop.
! Configuration File for keepalived
global_defs {
router_id LVS_DEVEL
}
vrrp_script check_apiserver {
script "/etc/keepalived/check_apiserver.sh"
interval 3
weight -2
fall 10
rise 2
}
vrrp_instance VI_1 {
state <state>
interface <interface>
virtual_router_id 51
priority <priority>
authentication {
auth_type PASS
auth_pass velotiotechnologies
}
virtual_ipaddress {
<virtual ip>
}
track_script {
check_apiserver
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment