ibm.storage_virtualize.ibm_sv_manage_fcportsetmember 模块 – 此模块用于管理 IBM Storage Virtualize 系列系统上光纤通道 (FC) 端口集的端口添加或删除操作。

注意

此模块是 ibm.storage_virtualize 集合 (版本 2.5.0) 的一部分。

如果您使用的是 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install ibm.storage_virtualize

要在剧本中使用它,请指定: ibm.storage_virtualize.ibm_sv_manage_fcportsetmember

ibm.storage_virtualize 1.12.0 中的新增功能

概要

  • 管理“addfcportsetmember”和“rmfcportsetmember”命令的 Ansible 接口。

参数

参数

注释

clustername

字符串 / 必需

Storage Virtualize 系统的主机名或管理 IP。

domain

字符串

Storage Virtualize 系统的域名。

当参数 *clustername* 使用主机名时有效。

fcportid

字符串 / 必需

指定端口的光纤通道 I/O 端口 ID。

值可以是十进制数 1 到 FC I/O 端口的最大数量。

log_path

字符串

调试日志文件的路径。

name

字符串 / 必需

指定 FC 端口集的名称。

password

字符串

Storage Virtualize 系统的 REST API 密码。

如果不使用 *token* 验证用户,则需要 *username* 和 *password* 参数。

state

字符串 / 必需

将 FC 端口 ID 添加 (present) 到或从 FC 端口集 (absent) 中移除

选项

  • "present"

  • "absent"

token

字符串

用于在 Storage Virtualize 系统上验证用户的身份验证令牌。

要生成令牌,请使用 ibm.storage_virtualize.ibm_svc_auth 模块。

username

字符串

Storage Virtualize 系统的 REST API 用户名。

如果不使用 *token* 验证用户,则需要 *username* 和 *password* 参数。

validate_certs

布尔值

验证证书。

选项

  • false ← (默认)

  • true

备注

注意

  • 此模块支持 check_mode

示例

- name: Add port ID to the portset
  ibm.storage_virtualize.ibm_sv_manage_fcportsetmember:
   clustername: "{{cluster}}"
   username: "{{username}}"
   password: "{{password}}"
   name: portset1
   fcportid: 3
   state: present
- name: Remove port ID from portset
  ibm.storage_virtualize.ibm_sv_manage_fcportsetmember:
   clustername: "{{cluster}}"
   username: "{{username}}"
   password: "{{password}}"
   name: portset1
   fcportid: 3
   state: absent

作者

  • Sudheesh S (@sudheesh-reddy)