Skip to content

Commit

Permalink
Prepare release version 1.5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
micafer committed Oct 20, 2020
1 parent 32ec7ec commit a1d224f
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,14 @@ im_client.py [-u|--xmlrpc-url <url>] [-r|--restapi-url <url>] [-v|--verify-ssl]

``sshvm <infId> <vmId> [show_only]``
Connect with SSH with the specified virtual machine ``vmId`` associated to the infrastructure with ID
infrastructure with ID ``infId``.
infrastructure with ID ``infId``. In case that the specified VM does not have public IP the client
will try to connect using the virtual machine with ID ``0`` as SSH proxy.
The ``show_only`` parameter is optional
and is a flag to specify if ssh command will only be shown in stdout instead of executed.

``ssh <infId> [show_only]``
Connect with SSH with the virtual machine with ID ``0`` associated to the infrastructure with ID
infrastructure with ID ``infId``.
The ``show_only`` parameter is optional
and is a flag to specify if ssh command will only be shown in stdout instead of executed.

Expand Down
4 changes: 4 additions & 0 deletions changelog
Original file line number Diff line number Diff line change
Expand Up @@ -97,3 +97,7 @@ IM-client 1.5.7
* Add support for ProxyCommand ssh.
* Add force option to delete operation.

IM-client 1.5.8
* Fix error where context flag ignored in add and remove resource in case of REST APA.
* Add Bearer token command.
* Add support for ProxyCommand ssh to internal VMs using master VM as proxy.
1 change: 1 addition & 0 deletions im_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1139,6 +1139,7 @@ def get_parser():
parser.add_operation_help('stopvm', '<inf_id> <vm_id>')
parser.add_operation_help('rebootvm', '<inf_id> <vm_id>')
parser.add_operation_help('sshvm', '<inf_id> <vm_id> [show_only]')
parser.add_operation_help('ssh', '<inf_id> [show_only]')
parser.add_operation_help('export', '<inf_id> [delete]')
parser.add_operation_help('import', '<json_file>')
parser.add_operation_help('getoutputs', '<inf_id>')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

from setuptools import setup

version = "1.5.7"
version = "1.5.8"

setup(name="IM-client", version=version,
author='GRyCAP - Universitat Politecnica de Valencia',
Expand Down

0 comments on commit a1d224f

Please sign in to comment.