zhmc_hba – Create HBAs in partitions
Synopsis
Create, update, or delete an HBA (virtual Host Bus Adapter) in a partition of a CPC (Z system).
Note that the Ansible module zhmc_partition can be used to gather facts about existing HBAs of a partition.
Requirements
The targeted Z system must be a z13 generation and must be in the Dynamic Partition Manager (DPM) operational mode. The z14 and later generations in DPM mode manage HBAs automatically via the “dpm-storage-management” firmware feature.
The HMC userid must have these task permissions: ‘Partition Details’.
The HMC userid must have object-access permissions to these objects: Partitions of the target HBAs, CPCs of these partitions, storage adapters backing the target HBAs.
Parameters
- hmc_host
The hostname or IP address of the HMC.
required: Truetype: str- hmc_auth
The authentication credentials for the HMC.
required: Truetype: dict- userid
The userid (username) for authenticating with the HMC. This is mutually exclusive with providing
session_id
.required: Falsetype: str- password
The password for authenticating with the HMC. This is mutually exclusive with providing
session_id
.required: Falsetype: str- session_id
HMC session ID to be used. This is mutually exclusive with providing
userid
andpassword
and can be created as described in zhmc_session – Manage HMC sessions across tasks.required: Falsetype: str- ca_certs
Path name of certificate file or certificate directory to be used for verifying the HMC certificate. If null (default), the path name in the ‘REQUESTS_CA_BUNDLE’ environment variable or the path name in the ‘CURL_CA_BUNDLE’ environment variable is used, or if neither of these variables is set, the certificates in the Mozilla CA Certificate List provided by the ‘certifi’ Python package are used for verifying the HMC certificate.
required: Falsetype: str- verify
If True (default), verify the HMC certificate as specified in the
ca_certs
parameter. If False, ignore what is specified in theca_certs
parameter and do not verify the HMC certificate.required: Falsetype: booldefault: True
- cpc_name
The name of the CPC with the partition containing the HBA.
required: Truetype: str- partition_name
The name of the partition containing the HBA.
required: Truetype: str- name
The name of the target HBA that is managed. If the HBA needs to be created, this value becomes its name.
required: Truetype: str- state
The desired state for the HBA. All states are fully idempotent within the limits of the properties that can be changed:
absent
: Ensures that the HBA does not exist in the specified partition.present
: Ensures that the HBA exists in the specified partition and has the specified properties.
required: Truetype: strchoices: absent, present- properties
Dictionary with input properties for the HBA, for
state=present
. Key is the property name with underscores instead of hyphens, and value is the property value in YAML syntax. Integer properties may also be provided as decimal strings. Will be ignored forstate=absent
.The possible input properties in this dictionary are the properties defined as writeable in the data model for HBA resources (where the property names contain underscores instead of hyphens), with the following exceptions:
name
: Cannot be specified because the name has already been specified in thename
module parameter.adapter_port_uri
: Cannot be specified because this information is specified using the artificial propertiesadapter_name
andadapter_port
.adapter_name
: The name of the adapter that has the port backing the target HBA. Cannot be changed after the HBA exists.adapter_port
: The port index of the adapter port backing the target HBA. Cannot be changed after the HBA exists.
Properties omitted in this dictionary will remain unchanged when the HBA already exists, and will get the default value defined in the data model for HBAs when the HBA is being created.
required: Falsetype: dict- log_file
File path of a log file to which the logic flow of this module as well as interactions with the HMC are logged. If null, logging will be propagated to the Python root logger.
required: Falsetype: str
Examples
---
# Note: The following examples assume that some variables named 'my_*' are set.
- name: Ensure HBA exists in the partition
zhmc_partition:
hmc_host: "{{ my_hmc_host }}"
hmc_auth: "{{ my_hmc_auth }}"
cpc_name: "{{ my_cpc_name }}"
partition_name: "{{ my_partition_name }}"
name: "{{ my_hba_name }}"
state: present
properties:
adapter_name: FCP-1
adapter_port: 0
description: "The port to our V7K #1"
device_number: "123F"
register: hba1
- name: Ensure HBA does not exist in the partition
zhmc_partition:
hmc_host: "{{ my_hmc_host }}"
hmc_auth: "{{ my_hmc_auth }}"
cpc_name: "{{ my_cpc_name }}"
partition_name: "{{ my_partition_name }}"
name: "{{ my_hba_name }}"
state: absent
Return Values
- changed
Indicates if any change has been made by the module. For
state=facts
, always will be false.returned: alwaystype: bool- msg
An error message that describes the failure.
returned: failuretype: str- hba
For
state=absent
, an empty dictionary.For
state=present
, the resource properties of the HBA after any changes.returned: successtype: dict- name
HBA name
type: str- {property}
Additional properties of the HBA, as described in the data model of the ‘HBA’ element object of the ‘Partition’ object in the HMC API book. The property names have hyphens (-) as described in that book.