Add port parameter to ssh Client
This commit adds a port parameter to the ssh.Client. We don't use it in
our test cases. However, it would be good to have it when I debug this
class because my development host ssh port is not 22. And I think
that it is natural a ssh client has this feature.
Change-Id: Id8b73108f67fe8c581dd8fba90902869b4ee776d
diff --git a/releasenotes/notes/add-ssh-port-parameter-to-client-6d16c374ac4456c1.yaml b/releasenotes/notes/add-ssh-port-parameter-to-client-6d16c374ac4456c1.yaml
new file mode 100644
index 0000000..b2ad199
--- /dev/null
+++ b/releasenotes/notes/add-ssh-port-parameter-to-client-6d16c374ac4456c1.yaml
@@ -0,0 +1,4 @@
+---
+features:
+ - A new optional parameter `port` for ssh client (`tempest.lib.common.ssh.Client`)
+ to specify destination port for a host. The default value is 22.