hitachivantara.vspone_block.vsp.hv_hg module – Manages host group on Hitachi VSP storage system.
Note
This module is part of the hitachivantara.vspone_block collection (version 3.4.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_hg
.
New in hitachivantara.vspone_block 3.0.0
Synopsis
This module provides the following host group management operations
create host group.
delete host group.
add logical unit to host group.
remove logical unit from host group.
add host WWN to host group.
remove host WWN from host group.
set host mode.
add host mode option to host group.
remove host mode option from host group.
For examples, go to URL https://github.com/hitachi-vantara/vspone-block-ansible/blob/main/playbooks/vsp_direct/hostgroup.yml
Requirements
The below requirements are needed on the host that executes this module.
python >= 3.8
Parameters
Parameter |
Comments |
---|---|
Information required to establish a connection to the storage system. |
|
IP address or hostname of the storage system. |
|
This field is used to pass the value of the lock token to operate on locked resources. |
|
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 hostgroup operation. |
|
Host mode of host group. Choices:
|
|
List of host group host mode option numbers. 0 # RESERVED 2 # VERITAS_DB_EDITION_ADV_CLUSTER 6 # TPRLO 7 # AUTO_LUN_RECOGNITION 12 # NO_DISPLAY_FOR_GHOST_LUN 13 # SIM_REPORT_AT_LINK_FAILURE 14 # HP_TRUECLUSTER_WITH_TRUECOPY 15 # RAID_HACMP 22 # VERITAS_CLUSTER_SERVER 23 # REC_COMMAND_SUPPORT 25 # SUPPORT_SPC_3_PERSISTENT_RESERVATION 33 # SET_REPORT_DEVICE_ID_ENABLE 39 # CHANGE_NEXUS_SPECIFIED_IN_SCSI_TARGET_RESET 40 # VVOL_EXPANSION 41 # PRIORITIZED_DEVICE_RECOGNITION 42 # PREVENT_OHUB_PCI_RETRY 43 # QUEUE_FULL_RESPONSE 48 # HAM_SVOL_READ 49 # BB_CREDIT_SETUP_1 50 # BB_CREDIT_SETUP_2 51 # ROUND_TRIP_SETUP 52 # HAM_AND_CLUSTER_SW_FOR_SCSI_2 54 # EXTENDED_COPY 57 # HAM_RESPONSE_CHANGE 60 # LUN0_CHANGE_GUARD 61 # EXPANDED_PERSISTENT_RESERVE_KEY 63 # VSTORAGE_APIS_ON_T10_STANDARDS 65 # ROUND_TRIP_EXTENDED_SETUP 67 # CHANGE_OF_ED_TOV_VALUE 68 # PAGE_RECLAMATION_LINUX 69 # ONLINE_LUSE_EXPANSION 71 # CHANGE_UNIT_ATTENTION_FOR_BLOCKED_POOL_VOLS 72 # AIX_GPFS 73 # WS2012 78 # NON_PREFERRED_PATH 91 # DISABLE_IO_WAIT_FOR_OPEN_STACK 95 # CHANGE_SCSI_LU_RESET_NEXUS_VSP_HUS_VM 96 # CHANGE_SCSI_LU_RESET_NEXUS 97 # PROPRIETARY_ANCHOR_COMMAND_SUPPORT 100 # HITACHI_HBA_EMULATION_CONNECTION_OPTION 102 # GAD_STANDARD_INQURY_EXPANSION_HCS 105 # TASK_SET_FULL_RESPONSE_FOR_IO_OVERLOAD 110 # ODX Support for WS2012 113 # iSCSI CHAP Authentication Log 114 # Auto Asynchronous Reclamation on ESXi 6.5+ 122 # TASK_SET_FULL_RESPONSE_AFTER_QOS_UPPER_LIMIT 124 # GUARANTEED_RESPONSE_DURING_CONTROLLER_FAILURE 131 # WCE_BIT_OFF_MODE |
|
LDEVs to be mapped/unmapped with the host group. Supported format can be decimal or HEX. |
|
Name of the host group. If not given, it will create the name with prefix “smrha-” and add 10 digit random number at the end, for example “smrha-0806262996”. |
|
FC Port. |
|
If the value is true, destroy the logical devices that are no longer attached to any host group or iSCSI target. Choices:
|
|
Subtask operation. Choices:
|
|
List of host WWN to add or remove. |
|
Set state to Set state to Choices:
|
|
Information about the storage system. This field is an optional field. |
|
The serial number of the storage system. |
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: none |
Determines if the module should run in check mode. |
Examples
- name: Create host group with LUN in decimal
hitachivantara.vspone_block.vsp.hv_hg:
state: present
connection_info:
address: storage1.company.com
username: "dummy_user"
password: "dummy_password"
spec:
name: 'testhg26dec'
port: 'CL1-A'
host_mode: 'VMWARE_EXTENSION'
host_mode_options: [40]
wwns: ['100000109B583B2D', '100000109B583B2C']
ldevs: [393, 851]
- name: Create host group with LUN in HEX
hitachivantara.vspone_block.vsp.hv_hg:
state: present
connection_info:
address: storage1.company.com
username: "dummy_user"
password: "dummy_password"
host_group_info:
name: 'testhg26dec'
port: 'CL1-A'
host_mode: 'VMWARE_EXTENSION'
host_mode_options: [54, 63]
wwns: ['100000109B583B2D', '100000109B583B2C']
ldevs: ['00:23:A4']
- name: Delete host group
hitachivantara.vspone_block.vsp.hv_hg:
state: absent
connection_info:
address: storage1.company.com
username: "dummy_user"
password: "dummy_password"
spec:
name: 'testhg26dec'
port: 'CL1-A'
- name: Present LUN
hitachivantara.vspone_block.vsp.hv_hg:
state: present
connection_info:
address: storage1.company.com
username: "dummy_user"
password: "dummy_password"
spec:
state: present_ldev
name: 'testhg26dec'
port: 'CL1-A'
ldevs: ['00:05:77', '00:05:7D']
- name: Unpresent LUN
hitachivantara.vspone_block.vsp.hv_hg:
state: present
connection_info:
address: storage1.company.com
username: "dummy_user"
password: "dummy_password"
spec:
state: unpresent_ldev
name: 'testhg26dec'
port: 'CL1-A'
ldevs: [800, 801]
- name: Add WWN
hitachivantara.vspone_block.vsp.hv_hg:
state: present
connection_info:
address: storage1.company.com
username: "dummy_user"
password: "dummy_password"
spec:
state: add_wwn
name: 'testhg26dec'
port: 'CL1-A'
wwns: ['200000109B3C0FD3']
- name: Remove WWN
hitachivantara.vspone_block.vsp.hv_hg:
state: present
connection_info:
address: storage1.company.com
username: "dummy_user"
password: "dummy_password"
spec:
state: remove_wwn
name: 'testhg26dec'
port: 'CL1-A'
wwns: ['200000109B3C0FD3']
- name: Update host group
hitachivantara.vspone_block.vsp.hv_hg:
state: present
connection_info:
address: storage1.company.com
username: "dummy_user"
password: "dummy_password"
spec:
state: set_host_mode_and_hmo
name: 'testhg26dec'
port: 'CL1-A'
host_mode: 'VMWARE_EXTENSION'
host_mode_options: [54, 63]
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Information of host group. Returned: always |
|
ID of the host group. Returned: success Sample: |
|
Name of the host group. Returned: success Sample: |
|
Host mode of the host group. Returned: success Sample: |
|
List of host mode options for the host group. Returned: success |
|
Name of the host mode option. Returned: success Sample: |
|
Number of the host mode option. Returned: success Sample: |
|
List of LUN paths for the host group. Returned: success |
|
ID of the logical device. Returned: success Sample: |
|
ID of the LUN. Returned: success Sample: |
|
Port associated with the host group. Returned: success Sample: |
|
Resource group ID associated with the host group. Returned: success Sample: |
|
Storage ID associated with the host group. Returned: success Sample: |
|
List of WWNs associated with the host group. Returned: success |
|
ID of the WWN. Returned: success Sample: |
|
Name of the WWN. Returned: success Sample: |