hitachivantara.vspone_block.vsp.hv_vsp_one_server_hba_facts module – Retrieves server HBA information from Hitachi VSP One 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.vsp.hv_vsp_one_server_hba_facts
.
New in hitachivantara.vspone_block 4.3.0
Synopsis
This module retrieves HBA (Host Bus Adapter) information about servers from Hitachi VSP One storage systems.
Utilizes the Hitachi Vantara VSP One Simple API for server HBA facts retrieval across VSP one B2x and VSP E series models.
For usage examples, visit https://github.com/hitachi-vantara/vspone-block-ansible/blob/main/playbooks/vsp_direct/vsp_one_server_hba_facts.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. |
|
Token used to operate on locked resources. |
|
Password for authentication. This is a required field. |
|
Username for authentication. This is a required field. |
|
Query parameters for retrieving server HBA information. |
|
HBA WWN to filter servers. |
|
iSCSI name to filter servers. |
|
Server nickname to filter servers. |
|
Server identifier to retrieve specific server HBA information. |
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: full |
Specifies whether the module operates in check mode. |
Examples
- name: Get server HBA information by server ID
hitachivantara.vspone_block.vsp.hv_vsp_one_server_hba_facts:
connection_info:
address: vsp.company.com
username: "admin"
password: "password"
spec:
server_id: 31
- name: Get server HBA information by HBA WWN
hitachivantara.vspone_block.vsp.hv_vsp_one_server_hba_facts:
connection_info:
address: vsp.company.com
username: "admin"
password: "password"
spec:
hba_wwn: "210003e08b0256f9"
server_id: 31
- name: Get server HBA information by iSCSI name
hitachivantara.vspone_block.vsp.hv_vsp_one_server_hba_facts:
connection_info:
address: vsp.company.com
username: "admin"
password: "password"
spec:
iscsi_name: "iqn.1994-04.jp.co.hitachi:rsd.has.i.00001d.1c"
server_id: 31
Returned Facts
Facts returned by this module are added/updated in the hostvars
host facts and can be referenced by name just like any other host fact. They do not need to be registered in order to use them.
Key |
Description |
---|---|
Server HBA information retrieved from the storage system. Returned: always |
|
HBA WWN address. Returned: success Sample: |
|
iSCSI name for the HBA. Returned: success Sample: |
|
List of port identifiers associated with this HBA. Returned: success Sample: |
|
Server identifier that this HBA belongs to. Returned: success Sample: |