hitachivantara.vspone_block.sds_block.hv_sds_block_remote_iscsi_port module – Manages remote iSCSI port on Hitachi SDS Block storage systems.
Note
This module is part of the hitachivantara.vspone_block collection (version 4.3.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install hitachivantara.vspone_block.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: hitachivantara.vspone_block.sds_block.hv_sds_block_remote_iscsi_port.
New in hitachivantara.vspone_block 4.2.0
Synopsis
This module allows registers a remote iSCSI port, and deletes information about registered remote iSCSI ports on Hitachi SDS Block storage systems.
For examples, go to URL https://github.com/hitachi-vantara/vspone-block-ansible/blob/main/playbooks/sds_block_direct/remote_iscsi_port.yml
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.9
Parameters
Parameter |
Comments |
|---|---|
Information required to establish a connection to the storage system. |
|
IP address or hostname of the storage system. |
|
Type of connection to the storage system. Choices:
|
|
Password for authentication. This is a required field. |
|
Username for authentication. This is a required field. |
|
Specification for the remote iSCSI port. |
|
The ID of the remote iSCSI port. Required for delete operation. |
|
Port number of the local storage system in CLx-y format. Required for create operation. |
|
iSCSI port IP address for the remote storage system. Required for create operation. |
|
Port number of the remote storage system in CLx-y format. Required for create operation. |
|
Serial number of the remote storage system. Required for create operation. |
|
ID indicating the remote storage system model. Required for create operation. Choices:
|
|
TCP port number of the iSCSI target for the remote storage system. Used in create operation. If this is omitted, the TCP port number of the iSCSI target for the local storage system is set. |
|
The desired state of the remote iSCSI port. Choices:
|
Attributes
Attribute |
Support |
Description |
|---|---|---|
Support: none |
Determines if the module should run in check mode. |
Examples
- name: Register a remote iscsi port
hitachivantara.vspone_block.sds_block.hv_sds_block_remote_iscsi_port:
connection_info:
address: storage1.company.com
username: "admin"
password: "secret"
state: "present"
spec:
local_port: "CL1-C"
remote_serial: "810045"
remote_storage_system_type: "M8"
remote_port: "CL1-C"
remote_ip_address: "172.25.59.213"
- name: Restore storage node from maintenance
hitachivantara.vspone_block.sds_block.hv_sds_block_remote_iscsi_port:
connection_info:
address: storage1.company.com
username: "admin"
password: "secret"
state: "restore"
spec:
id: "3d0997ce-7065-4e4a-9095-4dc62b36f300"
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
A list of remote iSCSI ports. Returned: always |
|
The ID of a remote iSCSI port. Returned: success Sample: |
|
Port number of the local storage system in CLx-y format. Returned: success Sample: |
|
iSCSI port IP address (IPv4/IPv6) for the remote storage system. Returned: success Sample: |
|
Port number of the remote storage system in CLx-y format. Returned: success Sample: |
|
Serial number of the remote storage system. Returned: success Sample: |
|
ID indicating the remote storage system model. Returned: success Sample: |
|
TCP port number of the iSCSI target for the remote storage system. Returned: success Sample: |