ibm.storage_virtualize.ibm_svc_manage_portset 模块 – 此模块管理 IBM Storage Virtualize 系列系统上的端口集配置
注意
此模块是 ibm.storage_virtualize 集合 (版本 2.5.0) 的一部分。
如果您使用的是 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install ibm.storage_virtualize
。
要在 playbook 中使用它,请指定: ibm.storage_virtualize.ibm_svc_manage_portset
。
ibm.storage_virtualize 1.8.0 中的新增功能
概要
用于使用“mkportset”、“chportset”和“rmportset”命令管理 IP 和光纤通道 (FC) 端口集的 Ansible 接口。
参数
参数 |
注释 |
---|---|
Storage Virtualize 系统的主机名或管理 IP。 |
|
Storage Virtualize 系统的域名。 当主机名用于参数 *clustername* 时有效。 |
|
调试日志文件的路径。 |
|
指定端口集的名称。 |
|
指定从端口集删除所有权组。 参数 *ownershipgroup* 和 *noownershipgroup* 是互斥的。 仅在更新端口集时适用。 选项
|
|
在重命名时指定端口集的旧名称。 当 *state=present* 时有效,用于重命名现有主机。 |
|
正在将端口集对象映射到的所有权组的名称。 参数 *ownershipgroup* 和 *noownershipgroup* 是互斥的。 当 *state=present* 时适用。 |
|
Storage Virtualize 系统的 REST API 密码。 如果不使用 *token* 来验证用户,则需要参数 *username* 和 *password*。 |
|
指定端口集的类型。 仅在创建端口集时适用。 如果未指定,则将使用 *portset_type=host*。 选项
|
|
指定可以映射到端口集的端口类型。 当 *state=present* 时适用。 如果未指定,则将使用 *porttype=ethernet* 来管理 IP 端口集。 选项
|
|
创建 ( 选项
|
|
用于验证 Storage Virtualize 系统上用户的身份验证令牌。 要生成令牌,请使用 ibm.storage_virtualize.ibm_svc_auth 模块。 |
|
Storage Virtualize 系统的 REST API 用户名。 如果不使用 *token* 来验证用户,则需要参数 *username* 和 *password*。 |
|
验证证书。 选项
|
备注
注意
此模块支持
check_mode
。
示例
- name: Create a portset
ibm.storage_virtualize.ibm_svc_manage_portset:
clustername: "{{cluster}}"
username: "{{username}}"
password: "{{password}}"
name: portset1
portset_type: host
ownershipgroup: owner1
state: present
- name: Update a portset
ibm.storage_virtualize.ibm_svc_manage_portset:
clustername: "{{cluster}}"
username: "{{username}}"
password: "{{password}}"
name: portset1
noownershipgroup: true
state: present
- name: Create an FC portset
ibm.storage_virtualize.ibm_svc_manage_portset:
clustername: "{{cluster}}"
username: "{{username}}"
password: "{{password}}"
name: fcportset1
porttype: fc
portset_type: host
ownershipgroup: owner1
state: present
- name: Create an highspeedreplication portset
ibm.storage_virtualize.ibm_svc_manage_portset:
clustername: "{{cluster}}"
username: "{{username}}"
password: "{{password}}"
name: fcportset1
porttype: ethernet
portset_type: highspeedreplication
state: present
- name: Rename the portset
ibm.storage_virtualize.ibm_svc_manage_portset:
clustername: "{{cluster}}"
username: "{{username}}"
password: "{{password}}"
name: portset2
old_name: portset1
state: present
- name: Delete a portset
ibm.storage_virtualize.ibm_svc_manage_portset:
clustername: "{{cluster}}"
username: "{{username}}"
password: "{{password}}"
name: portset1
state: absent