Merge "Use nopreempt for keepalived"

This commit is contained in:
Jenkins 2016-03-14 14:00:00 +00:00 committed by Gerrit Code Review
commit ae27f19aff

View File

@ -6,7 +6,8 @@ vrrp_script check_alive {
}
vrrp_instance kolla_internal_vip {
state MASTER
state BACKUP
nopreempt
interface {{ api_interface }}
virtual_router_id 51
priority {{ groups['haproxy'].index(inventory_hostname) + 1 }}
@ -25,7 +26,8 @@ vrrp_instance kolla_internal_vip {
{% if haproxy_enable_external_vip | bool %}
vrrp_instance kolla_external_vip {
state MASTER
state BACKUP
nopreempt
interface {{ kolla_external_vip_interface }}
virtual_router_id 52
priority {{ groups['haproxy'].index(inventory_hostname) + 1 }}