From 5a3fcba335125197a3b59609905ae823812ba7d8 Mon Sep 17 00:00:00 2001 From: dkruglov Date: Wed, 8 Jul 2015 17:16:33 +0200 Subject: [PATCH] Update bonding interfaces map Update BONDING_INTERFACES setting to enable bonding of admin interface: * Add additional interface eth5 * Rearrange interfaces (interfaces are added to networks successively, regardless of names, so the second interface in admin network should be eth1) Change-Id: I7420eba14ea07ee5992a5cbbbff94290d1cc9089 Implements: blueprint admin-iface-bond-tests --- devops/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devops/settings.py b/devops/settings.py index 14c43e0c..0aa288e9 100644 --- a/devops/settings.py +++ b/devops/settings.py @@ -93,8 +93,8 @@ INTERFACE_ORDER = os.environ.get('INTERFACE_ORDER', BONDING = os.environ.get("BONDING", 'false') == 'true' BONDING_INTERFACES = { - 'admin': ['eth0'], - 'public': ['eth1', 'eth2', 'eth3', 'eth4'] + 'admin': ['eth0', 'eth1'], + 'public': ['eth2', 'eth3', 'eth4', 'eth5'] } MULTIPLE_NETWORKS = os.environ.get('MULTIPLE_NETWORKS', False) == 'true'