diff options
author | QiLiang <liangqi1@huawei.com> | 2015-12-31 02:11:21 +0000 |
---|---|---|
committer | QiLiang <liangqi1@huawei.com> | 2015-12-31 03:08:24 +0000 |
commit | 60ee06b4179bbd4b578275ad3e773853713af3c4 (patch) | |
tree | 39d318b6b6ab966bc626d3d969fd8839215e5264 /samples | |
parent | 8375eec566fc4266d940e98a61d78707c4801f93 (diff) |
Add Dummy context and scenario type
Dummy Context Usage:
- if no context specified in the task file then automatically use
Dummy Context
- or specify the context with type Dummy in the task file, like
context:
type: Dummy
Note: context without type name default use Heat Context.
(e.g. samples/fio.yaml)
JIRA: -
Change-Id: I7f798a7260bdd6ac24902e2c835a3b121319fd8c
Signed-off-by: QiLiang <liangqi1@huawei.com>
Diffstat (limited to 'samples')
-rw-r--r-- | samples/dummy-no-context.yaml | 14 | ||||
-rw-r--r-- | samples/dummy.yaml | 17 |
2 files changed, 31 insertions, 0 deletions
diff --git a/samples/dummy-no-context.yaml b/samples/dummy-no-context.yaml new file mode 100644 index 000000000..5ab97a3a8 --- /dev/null +++ b/samples/dummy-no-context.yaml @@ -0,0 +1,14 @@ +--- +# Sample benchmark task config file + +schema: "yardstick:task:0.1" + +scenarios: +- + type: Dummy + + runner: + type: Duration + duration: 5 + interval: 1 + diff --git a/samples/dummy.yaml b/samples/dummy.yaml new file mode 100644 index 000000000..e41ab9fba --- /dev/null +++ b/samples/dummy.yaml @@ -0,0 +1,17 @@ +--- +# Sample benchmark task config file + +schema: "yardstick:task:0.1" + +scenarios: +- + type: Dummy + + runner: + type: Duration + duration: 5 + interval: 1 + +context: + type: Dummy + |