From f93ed9a935c9e9b159cb42c548f4d6d3383f36f2 Mon Sep 17 00:00:00 2001 From: Jeffrey Zhang Date: Mon, 11 Apr 2016 20:11:33 +0800 Subject: [PATCH] Use a random virtual_router_id in the keepalived Use a random virtual_router_id in case there are multi keepalived instances exist at the same time in the gate. Closes-Bug: #1568818 Change-Id: Iebb3dec088a21820e641b63bb2a5f40586d1df8c --- tools/deploy_aio.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/deploy_aio.sh b/tools/deploy_aio.sh index b6c507bce6..2f0d316fd6 100755 --- a/tools/deploy_aio.sh +++ b/tools/deploy_aio.sh @@ -7,6 +7,7 @@ export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" export KOLLA_BASE=$1 export KOLLA_TYPE=$2 +export KEEPALIVED_VIRTUAL_ROUTER_ID=$(shuf -i 1-255 -n 1) function copy_logs { cp -rnL /var/lib/docker/volumes/kolla_logs/_data/* /tmp/logs/kolla/ @@ -57,6 +58,7 @@ function write_configs { kolla_base_distro: "${KOLLA_BASE}" kolla_install_type: "${KOLLA_TYPE}" kolla_internal_vip_address: "169.254.169.10" +keepalived_virtual_router_id: "${KEEPALIVED_VIRTUAL_ROUTER_ID}" docker_restart_policy: "never" network_interface: "eth0" neutron_external_interface: "fake_interface"