BugFix: fix storperf_admin-rc problem
[yardstick.git] / tests / opnfv / test_cases / opnfv_yardstick_tc005.yaml
1 ---
2 # Yardstick TC005 config file
3 # Measure Storage IOPS, throughput and latency using fio
4
5 schema: "yardstick:task:0.1"
6 scenarios:
7 {% for rw in ['read', 'write', 'randwrite', 'randread', 'rw'] %}
8   {% for bs in ['4k', '64k', '1024k'] %}
9 -
10   type: Fio
11   options:
12     filename: /home/ubuntu/data.raw
13     bs: {{bs}}
14     rw: {{rw}}
15     ramp_time: 10
16     duration: 20
17
18   host: fio.yardstick-TC005
19
20   runner:
21     type: Iteration
22     iterations: 1
23     interval: 1
24
25   sla:
26     read_bw: 400
27     read_iops: 100
28     read_lat: 20000
29     write_bw: 400
30     write_iops: 100
31     write_lat: 20000
32     action: monitor
33   {% endfor %}
34 {% endfor %}
35
36 context:
37   name: yardstick-TC005
38   image: yardstick-trusty-server
39   flavor: m1.small
40   user: ubuntu
41
42   servers:
43     fio:
44       floating_ip: true
45
46   networks:
47     test:
48       cidr: '10.0.1.0/24'