From 0943e076624274978d1e87c8a44f80df9151a5e9 Mon Sep 17 00:00:00 2001 From: Andrew Lazarev Date: Wed, 17 Dec 2014 16:07:32 -0800 Subject: [PATCH] [Sahara] Set use_floating_ips=false for nova network There is no sense in using floating IPs in case of nova network. Sahara doesn't support assigning floating IPs from default_floating_pool. The best solution is to use private network for management. Change-Id: I4b3e1d52cab28fe5c8d398ca896216b47b9c4ee0 Closes-Bug: #1403680 --- lib/sahara | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/sahara b/lib/sahara index 6d1bef571a..e5f988bb31 100644 --- a/lib/sahara +++ b/lib/sahara @@ -131,6 +131,9 @@ function configure_sahara { if is_service_enabled neutron; then iniset $SAHARA_CONF_FILE DEFAULT use_neutron true iniset $SAHARA_CONF_FILE DEFAULT use_floating_ips true + else + iniset $SAHARA_CONF_FILE DEFAULT use_neutron false + iniset $SAHARA_CONF_FILE DEFAULT use_floating_ips false fi if is_service_enabled heat; then