diff options
author | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-09-20 13:39:56 +0200 |
---|---|---|
committer | Cédric Ollivier <cedric.ollivier@orange.com> | 2018-09-20 13:42:46 +0200 |
commit | a561c6ca316feb1a203327aa729ac0317f70df48 (patch) | |
tree | d5eb1a6b505955ddbc576cbf4328fbe11cd47a14 /ci | |
parent | ff2ba1fd18b05bf1b031e78d2589028968bbe906 (diff) |
Allow overriding default storage protocol
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 <viktor.tikkanen@nokia.com>
Change-Id: I19e4e25212b6f6176e3b967e01eb634c15e4d474
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
Diffstat (limited to 'ci')
-rw-r--r-- | ci/globals.yaml | 1 | ||||
-rw-r--r-- | ci/run.yaml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ci/globals.yaml b/ci/globals.yaml index 4be1b37a2..20217921f 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 385d38fb1..c7e27eccc 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 \ |