Merge "Add authentication for keepalived"

This commit is contained in:
Jenkins 2016-03-04 18:15:04 +00:00 committed by Gerrit Code Review
commit 6daf6eb0cd
2 changed files with 9 additions and 0 deletions

View File

@ -14,6 +14,10 @@ vrrp_instance kolla_internal_vip {
virtual_ipaddress {
{{ kolla_internal_vip_address }}
}
authentication {
auth_type PASS
auth_pass {{ keepalived_password }}
}
track_script {
check_alive
}
@ -29,6 +33,10 @@ vrrp_instance kolla_external_vip {
virtual_ipaddress {
{{ kolla_external_vip_address }}
}
authentication {
auth_type PASS
auth_pass {{ keepalived_password }}
}
track_script {
check_alive
}

View File

@ -86,3 +86,4 @@ rabbitmq_cluster_cookie: "password"
# HAProxy options
####################
haproxy_password: "password"
keepalived_password: "password"