From d5e272c1ba513a171bf3798be38a6e8f655378d9 Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Thu, 20 Sep 2018 13:39:56 +0200 Subject: Allow overriding default storage protocol MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It adds a new env var STORAGE_PROTOCOL to override storage_protocol in tempest. The default value is unchanged [1]. [1] https://docs.openstack.org/tempest/latest/sampleconf.html Co-Authored-By: Viktor Tikkanen Change-Id: I19e4e25212b6f6176e3b967e01eb634c15e4d474 Signed-off-by: Cédric Ollivier (cherry picked from commit a561c6ca316feb1a203327aa729ac0317f70df48) --- ci/globals.yaml | 1 + ci/run.yaml | 1 + functest/opnfv_tests/openstack/tempest/conf_utils.py | 4 +++- functest/utils/env.py | 3 ++- 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ci/globals.yaml b/ci/globals.yaml index 31083e69a..98b3f63f3 100644 --- a/ci/globals.yaml +++ b/ci/globals.yaml @@ -10,3 +10,4 @@ prefix: '/home/opnfv/functest' nameserver: '8.8.8.8' external_network: 'ext-net' + storage_protocol: 'iSCSI' diff --git a/ci/run.yaml b/ci/run.yaml index dffd2bbc9..dfc0bbca1 100644 --- a/ci/run.yaml +++ b/ci/run.yaml @@ -7,6 +7,7 @@ docker run \ -e NAMESERVER={nameserver} \ -e EXTERNAL_NETWORK={external_network} \ + -e STORAGE_PROTOCOL={storage_protocol} \ -v \ {prefix}/results/$JOB_NAME-$BUILD_ID:/home/opnfv/functest/results \ -v {prefix}/openstack.creds:/home/opnfv/functest/conf/env_file \ diff --git a/functest/opnfv_tests/openstack/tempest/conf_utils.py b/functest/opnfv_tests/openstack/tempest/conf_utils.py index d82b70c10..8ba3cca3e 100644 --- a/functest/opnfv_tests/openstack/tempest/conf_utils.py +++ b/functest/opnfv_tests/openstack/tempest/conf_utils.py @@ -229,7 +229,9 @@ def configure_tempest_update_params( getattr(config.CONF, 'tempest_validation_ssh_timeout')) rconfig.set('object-storage', 'operator_role', getattr(config.CONF, 'tempest_object_storage_operator_role')) - + if not rconfig.has_section('volume'): + rconfig.add_section('volume') + rconfig.set('volume', 'storage_protocol', env.get('STORAGE_PROTOCOL')) rconfig.set( 'identity', 'v3_endpoint_type', os.environ.get('OS_INTERFACE', 'public')) diff --git a/functest/utils/env.py b/functest/utils/env.py index 29ff6a825..07398b8da 100644 --- a/functest/utils/env.py +++ b/functest/utils/env.py @@ -30,7 +30,8 @@ INPUTS = { 'VOLUME_DEVICE_NAME': 'vdb', 'NAMESERVER': '8.8.8.8', 'NEW_USER_ROLE': 'Member', - 'USE_DYNAMIC_CREDENTIALS': 'True' + 'USE_DYNAMIC_CREDENTIALS': 'True', + 'STORAGE_PROTOCOL': 'iSCSI' } -- cgit 1.2.3-korg