Fixed the following: 1) Missing python paramiko module in package dependecies. 2) Paramiko connection error: TypeError: missing_host_key() missing 1 required positional argument: 'key' The set_missing_host_key_policy call should take a class instance AutoAddPolicy(), instead of the class name. 3) JSON config file defines "rdma_ips" instead of "nic_ips" 4) Added result file location in the documentation 5) Added env variable for PYTHONPATH to documentation 6) config.json changed default rw to randrw instead of read Change-Id: I96624e2912131f62254c684a6c03a53a7f806cde Signed-off-by: John Kariuki <John.K.Kariuki@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/455285 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> Reviewed-by: Liang Yan <liang.z.yan@intel.com>
36 lines
686 B
JSON
36 lines
686 B
JSON
{
|
|
"general": {
|
|
"username": "uname",
|
|
"password": "pass",
|
|
"transport": "transport_type"
|
|
},
|
|
"target": {
|
|
"nic_ips": ["192.0.1.1", "192.0.2.1"],
|
|
"mode": "spdk",
|
|
"use_null_block": false,
|
|
"nvmet_dir": "/path/to/nvmetcli",
|
|
"num_cores": "1",
|
|
"num_shared_buffers": 4096
|
|
},
|
|
"initiator1": {
|
|
"ip": "10.0.0.1",
|
|
"nic_ips": ["192.0.1.1"],
|
|
"mode": "spdk",
|
|
"nvmecli_dir": "/path/to/nvmecli"
|
|
},
|
|
"initiator2": {
|
|
"ip": "10.0.0.2",
|
|
"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
|
|
}
|
|
}
|