diff options
author | Georg Kunz <georg.kunz@ericsson.com> | 2018-05-16 22:19:18 +0200 |
---|---|---|
committer | Georg Kunz <georg.kunz@ericsson.com> | 2018-05-19 16:12:56 +0000 |
commit | 9d93e3383376dab08257b9e70d9e68ad99608989 (patch) | |
tree | e24c738e06a1b7a0a8e78a2a9caefffaecc786b7 /docs/testing/user | |
parent | db0ea3aa638297966faa37b23c3156abe96d1b8c (diff) |
Updating user guide with new ssh key config in pod.yaml
Dovetail does not copy the ssh key from pre_config to /root/.ssh anymore
inside Yardstick but instead, we point the pod.yaml file directly to the
key inside the pre_config directory.
JIRA: DOVETAIL-655
Change-Id: I23156d8940194547363bcf9a5cc581aab0d5c640
Signed-off-by: Georg Kunz <georg.kunz@ericsson.com>
Diffstat (limited to 'docs/testing/user')
-rw-r--r-- | docs/testing/user/userguide/testing_guide.rst | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/testing/user/userguide/testing_guide.rst b/docs/testing/user/userguide/testing_guide.rst index 8ee966fd..58cd0d70 100644 --- a/docs/testing/user/userguide/testing_guide.rst +++ b/docs/testing/user/userguide/testing_guide.rst @@ -337,10 +337,11 @@ A sample is provided below to show the required syntax when using a key file. ip: 10.1.0.50 user: root - # Private key of this node. It must be /root/.ssh/id_rsa - # Dovetail will move the key file from $DOVETAIL_HOME/pre_config/id_rsa - # to /root/.ssh/id_rsa of Yardstick container - key_filename: /root/.ssh/id_rsa + # Private ssh key for accessing the controller nodes. If a keyfile is + # being used, the path specified **must** be as shown below as this + # is the location of the user-provided private ssh key inside the + # Yardstick container. + key_filename: /home/opnfv/userconfig/pre_config/id_rsa Under nodes, repeat entries for name, role, ip, user and password or key file for each of the controller/compute nodes that comprise the SUT. Use a '-' to separate each of the entries. |