[bugfix] no ansible requirements when build docker image
[yardstick.git] / samples / ping-option-list.yaml
1 ##############################################################################
2 # Copyright (c) 2017 kristian.hunt@gmail.com and others.
3 #
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 ##############################################################################
9 ---
10 # Sample benchmark task config file
11 # A list of input values for a chosen parameter using Sequence runner
12
13 schema: "yardstick:task:0.1"
14
15 scenarios:
16 -
17   type: Ping
18   host: athena.demo
19   target: hades.demo
20
21   runner:
22     type: Sequence
23     interval: 1
24     scenario_option_name: packetsize
25     sequence:
26     - 100
27     - 200
28     - 250
29
30 context:
31   name: demo
32   image: yardstick-image
33   flavor: yardstick-flavor
34   user: ubuntu
35
36   placement_groups:
37     pgrp1:
38       policy: "availability"
39
40   servers:
41     athena:
42       floating_ip: true
43       placement: "pgrp1"
44     hades:
45       placement: "pgrp1"
46
47   networks:
48     test:
49       cidr: '10.0.1.0/24'
50
51