aboutsummaryrefslogtreecommitdiffstats
path: root/tools/os-requirements-check.py
diff options
context:
space:
mode:
authorAbhijit Sinha <abhijit.sinha@intel.com>2018-08-03 13:23:40 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-08-03 13:23:40 +0000
commit8d9b8727102545fedaa0e9a144ecb1958f446cd9 (patch)
tree3e03c6c7be8ccfec23b0caca3098b156805c0682 /tools/os-requirements-check.py
parent81c791a5598baba57d829f338abde29f7b157b71 (diff)
parent0b7a8e5805dff72966a68c4e2c86e467cfd2640a (diff)
Merge "Change AutoConnectSSH to return error code by default"
Diffstat (limited to 'tools/os-requirements-check.py')
0 files changed, 0 insertions, 0 deletions
ing.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
---
# Sample benchmark task config file
# measure storage performance using fio
# Jinja2 Syntax is supported
# using built-in functions ( Jinja2 for-endfor construct ) to test complex tasks
# Test block sizes of 4KB, 8KB, 64KB, 1MB
# Test 5 workloads: 4 corners and 1 mixed :read, write, randwrite, randread, rw
schema: "yardstick:task:0.1"

scenarios:
{% for rw in ['read', 'write', 'randwrite', 'randread', 'rw'] %}
  {% for bs in ['4k', '8k', '64k', '1024k'] %}
-
  type: Fio
  options:
    filename: /home/ubuntu/data.raw
    bs: {{bs}}
    rw: {{rw}}
    ramp_time: 10
    duration: 20
  host: fio.demo
  runner:
    type: Iteration
    iterations: 2
    interval: 1
  {% endfor %}
{% endfor %}

context:
  name: demo
  image: yardstick-trusty-server
  flavor: yardstick-flavor
  user: ubuntu
  servers:
    fio:
      floating_ip: true
  networks:
    test:
      cidr: "10.0.1.0/24"