blob: 8f6251c00a9ae94e6c75786348ee0269352211e0 (
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
|
{
"name": "workflow_demo_05",
"description": "run a workflow of yardstick test service",
"version": 1,
"tasks": [
{
"name": "http_yardstick_test",
"taskReferenceName": "ping_test",
"inputParameters": {
"http_request": {
"uri": "http://192.168.199.105:8080/greet",
"method": "GET"
}
},
"type": "HTTP"
}
],
"outputParameters": {
"header": "${ping_test.output.response.headers}",
"response": "${ping_test.output.response.body}",
"status": "${ping_test.output.response.statusCode}"
},
"schemaVersion": 2
}
|