From 940e49a6cdf7ae0f8286c953952a9757ba63a20b Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Thu, 2 May 2019 14:44:08 +0200 Subject: Manage block_migration in Rally MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It creates a new env var BLOCK_MIGRATION (True by default) to allow block migration for live migration in Rally. It updates scenarios and blacklisting to take that env vars into account. Change-Id: I41129432798ae9e40fe23bbe2c2162df4c0dff80 Signed-off-by: Cédric Ollivier --- functest/utils/env.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'functest/utils/env.py') diff --git a/functest/utils/env.py b/functest/utils/env.py index c761f309b..58140204d 100644 --- a/functest/utils/env.py +++ b/functest/utils/env.py @@ -37,7 +37,8 @@ INPUTS = { 'FLAVOR_EXTRA_SPECS': '', 'NAMESERVER': '8.8.8.8', 'NEW_USER_ROLE': 'Member', - 'USE_DYNAMIC_CREDENTIALS': 'True' + 'USE_DYNAMIC_CREDENTIALS': 'True', + 'BLOCK_MIGRATION': 'True' } -- cgit 1.2.3-korg