diff options
author | xudan <xudan16@huawei.com> | 2018-12-26 02:57:47 -0500 |
---|---|---|
committer | xudan <xudan16@huawei.com> | 2018-12-26 03:15:09 -0500 |
commit | 083efad304a64217426b827a666ae828e7b4d0e7 (patch) | |
tree | bd64573cd7cfcbffecb42355131e13bb84eb25ad /etc/conf/bottlenecks_config.yml | |
parent | d72355c25b456ac5660bf0ebb15f7265e1e634cf (diff) |
Add a patch to make ram_num configurable for DPDKovp-2.1.0
1. add a patch to change bottlenecks source code within git repo
/home/opnfv/bottlenecks
2. add a script to run the patch within Bottlenecks git repo
3. copy the edited file yardstick.py to /usr/local/lib
4. change the results dir from /home/opnfv/bottlenecks/results to
/home/opnfv/results which is out of Bottlenecks git repo
JIRA: BOTTLENECKS-248
Change-Id: I86ff51ec41caf79fb16e0985db8eefa679153102
Signed-off-by: xudan <xudan16@huawei.com>
Diffstat (limited to 'etc/conf/bottlenecks_config.yml')
-rw-r--r-- | etc/conf/bottlenecks_config.yml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/etc/conf/bottlenecks_config.yml b/etc/conf/bottlenecks_config.yml index b36f8650..ecc50c49 100644 --- a/etc/conf/bottlenecks_config.yml +++ b/etc/conf/bottlenecks_config.yml @@ -3,29 +3,33 @@ {% set validate_testcase = validate_testcase or '' %} {% set testcase = testcase or '' %} {% set deploy_scenario = deploy_scenario or 'unknown' %} +{% set ram_num = ram_num or '512' %} {% set dovetail_home = dovetail_home or '' %} bottlenecks: image_name: opnfv/bottlenecks docker_tag: ovp-2.0.0 opts: '-id --privileged=true' - envs: '-e DEPLOY_SCENARIO={{deploy_scenario}} -e Yardstick_TAG=stable -e OUTPUT_FILE={{testcase}}.out' + envs: '-e DEPLOY_SCENARIO={{deploy_scenario}} -e RAM_NUM={{ram_num}} + -e Yardstick_TAG=stable -e OUTPUT_FILE={{testcase}}.out' volumes: - '-v /var/run/docker.sock:/var/run/docker.sock' + - '-v {{dovetail_home}}/patches:/home/patches' - '-v {{dovetail_home}}/results/bottlenecks:/tmp' config: dir: '/home/opnfv/userconfig' pre_condition: - 'cp /home/opnfv/userconfig/images/ubuntu-16.04-server-cloudimg-amd64-disk1.img /tmp/yardstick.img' + - '/home/patches/bottlenecks/make-ram_num-configurable/apply.sh' cmds: - 'python /home/opnfv/bottlenecks/testsuites/run_testsuite.py testcase {{validate_testcase}} False' post_condition: - - 'mkdir -p /home/opnfv/bottlenecks/results' - - 'cp /tmp/bottlenecks.log /home/opnfv/bottlenecks/results' - - 'cp /tmp/bottlenecks.stress.ping.out /home/opnfv/bottlenecks/results' + - 'mkdir -p /home/opnfv/results' + - 'cp /tmp/bottlenecks.log /home/opnfv/results' + - 'cp /tmp/bottlenecks.stress.ping.out /home/opnfv/results' - 'rm /tmp/yardstick.img' result: - dir: '/home/opnfv/bottlenecks/results' + dir: '/home/opnfv/results' openrc: '/tmp/admin_rc.sh' extra_container: - 'Bottlenecks-Yardstick' |