b69796f777
Fixed parameter names in the sample json config file. Change-Id: I4e221b17c533c0957a325e24043a627b5acb6220 Signed-off-by: John Kariuki <John.K.Kariuki@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/7688 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
40 lines
821 B
JSON
40 lines
821 B
JSON
{
|
|
"general": {
|
|
"username": "uname",
|
|
"password": "pass",
|
|
"transport": "transport_type"
|
|
},
|
|
"target": {
|
|
"nic_ips": ["192.0.1.1", "192.0.2.1"],
|
|
"mode": "spdk",
|
|
"null_block_devices": 0,
|
|
"nvmet_dir": "/path/to/nvmetcli",
|
|
"core_mask": "[1]",
|
|
"num_shared_buffers": 4096
|
|
},
|
|
"initiator1": {
|
|
"ip": "10.0.0.1",
|
|
"nic_ips": ["192.0.1.2"],
|
|
"target_nic_ips": ["192.0.1.1"],
|
|
"mode": "spdk",
|
|
"fio_bin": "/path/to/fio/bin",
|
|
"nvmecli_bin": "/path/to/nvmecli/bin",
|
|
"num_cores": 4
|
|
},
|
|
"initiator2": {
|
|
"ip": "10.0.0.2",
|
|
"nic_ips": ["192.0.2.2"],
|
|
"target_nic_ips": ["192.0.2.1"],
|
|
"mode": "spdk"
|
|
},
|
|
"fio": {
|
|
"bs": ["4k"],
|
|
"qd": [128],
|
|
"rw": ["randrw"],
|
|
"rwmixread": 100,
|
|
"run_time": 5,
|
|
"ramp_time": 1,
|
|
"run_num": 3
|
|
}
|
|
}
|