diff options
author | Mark Beierl <mbeierl@vmware.com> | 2019-12-20 17:02:00 -0500 |
---|---|---|
committer | Mark Beierl <mbeierl@vmware.com> | 2019-12-20 17:02:00 -0500 |
commit | 24aeda6b73bfa9c31dee8454fdc49bbdb5e1c81b (patch) | |
tree | 03aa57726dbb44fac6406431eedc4734d8f77248 /docs/testing | |
parent | 25166d6013dc58e7a48257b44e4dfbb14a788742 (diff) |
Add Agent Port
Allows the port number to be added to the IP addresses used
for initiating worklaods. This is done specifically for
containerized workload where the exposed port might need to be
specified per workload agent to allow multiple agents to run
on the same host.
STORPERF-270
Change-Id: If011e686d89e5667509ca57e25f05fba1ed52ed1
Signed-off-by: Mark Beierl <mbeierl@vmware.com>
Diffstat (limited to 'docs/testing')
-rw-r--r-- | docs/testing/user/test-usage.rst | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/testing/user/test-usage.rst b/docs/testing/user/test-usage.rst index ab59cab..0fb3a6c 100644 --- a/docs/testing/user/test-usage.rst +++ b/docs/testing/user/test-usage.rst @@ -110,7 +110,33 @@ hypervisor, or even a bare metal server. In the bare metal case, it even allows for performing RADOS or RDB performance tests using the appropriate FIO engine. +If the slave SSH server is listening to a port other than 22, the port number +can be specified as part of the address as follows: +IPv4 example for port 2222: + +.. code-block:: + 192.168.1.10:2222 + +IPv6 example for port 2222: + +.. code-block:: + [1fe80::58bb:c8b:f2f2:c888]:2222 + +Helper Container Image for Workloads +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +A new docker container is provided with StorPerf that can be used to test +under docker or Kubernetes environments. It has hard coded credentials +of root/password with an SSH server built it, so be cautious about security +concerns when using this image. It listens internally on port 22, so that +port must be exposed to a free port on the host in order for StorPerf to +reach the synthetic workload container. + +.. code-block:: bash + + docker run --name=storperf-workloadagent -p 2222:22 + opnfv/storperf-workloadagent:latest Initialize the Target Volumes ============================= |