aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opnfv/test_cases/opnfv_yardstick_tc015.yaml
blob: f35c83377de25d9c9be56a9b3bd6ed8ac52eb0c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
##############################################################################
# Copyright (c) 2019 Orange and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
---

schema: "yardstick:task:0.1"
description: >
    Yardstick TC015 config file;
    Measure Processing speed using unixbench with its impact on energy consumption and CPU load.

{% set target = target or "node5"%}
{% set file = file or '/etc/yardstick/pod.yaml' %}
{% set duree = 60 %}
{% set intervalle = 5 %}
scenarios:

-
  type: Energy
  run_in_background: true
  target: {{target}}.LF

  runner:
    type: Duration
    duration: {{duree}}
    interval: {{intervalle}}

-
  type: CPUload
  run_in_background: true
  options:
    interval: 1
    count: 1
  host: {{target}}.LF
  runner:
    type: Duration
    duration: {{duree}}
    interval: {{intervalle}}

-
  type: UnixBench
  options:
    run_mode: 'verbose'
    test_type: 'dhry2reg'
  host: {{target}}.LF

  runner:
    type: Iteration
    iterations: 1
    interval: 1


context:
  type: Node
  name: LF
  file: {{file}}