ibm.spectrum_virtualize.ibm_svc_hostcluster 模块 – 此模块管理 IBM Spectrum Virtualize 系列存储系统上的主机集群
注意
此模块是 ibm.spectrum_virtualize 集合 (版本 2.0.0) 的一部分。
如果您正在使用 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install ibm.spectrum_virtualize
。
要在 playbook 中使用它,请指定: ibm.spectrum_virtualize.ibm_svc_hostcluster
。
注意
ibm.spectrum_virtualize 集合已重命名为 ibm.storage_virtualize,并将从 Ansible 12 中删除。如果您使用 ibm.spectrum_virtualize 中的内容,请更新 playbook 和角色中的 FQCN!创建新的 playbook 或角色时,请直接使用 ibm.storage_virtualize 中的内容。
ibm.spectrum_virtualize 1.5.0 中的新增功能
概要
用于管理“mkhostcluster”、“chhostcluster”和“rmhostcluster”主机命令的 Ansible 接口。
参数
参数 |
注释 |
---|---|
Spectrum Virtualize 存储系统的 hostname 或管理 IP。 |
|
Spectrum Virtualize 存储系统的域。 当参数 *clustername* 使用 hostname 时有效。 |
|
调试日志文件的路径。 |
|
指定新主机集群对象的名称或标签。 |
|
如果指定为 True,则主机集群对象将从其所属的所有者组中移除。 参数 *ownershipgroup* 和 *noownershipgroup* 是互斥的。 当 *state=present* 用于修改现有主机集群时适用。 选项
|
|
正在添加主机集群对象的拥有者组的名称。 参数 *ownershipgroup* 和 *noownershipgroup* 是互斥的。 当 *state=present* 时适用。 |
|
Spectrum Virtualize 存储系统的 REST API 密码。 如果不使用 *token* 认证用户,则参数 *username* 和 *password* 是必需的。 |
|
指定删除主机集群中的所有主机和关联的主机集群对象。 当 *state=absent* 时适用。 选项
|
|
创建 ( 选项
|
|
用于在 Spectrum Virtualize 存储系统上验证用户的身份验证令牌。 要生成令牌,请使用 ibm.spectrum_virtualize.ibm_svc_auth 模块。 |
|
Spectrum Virtualize 存储系统的 REST API 用户名。 如果不使用 *token* 认证用户,则参数 *username* 和 *password* 是必需的。 |
|
验证证书。 选项
|
备注
注意
此模块支持
check_mode
。
示例
- name: Define a new host cluster
ibm.spectrum_virtualize.ibm_svc_hostcluster:
clustername: "{{clustername}}"
domain: "{{domain}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/playbook.debug
name: hostcluster0
state: present
ownershipgroup: group1
- name: Update the ownershipgroup of a host cluster
ibm.spectrum_virtualize.ibm_svc_hostcluster:
clustername: "{{clustername}}"
domain: "{{domain}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/playbook.debug
name: hostcluster0
state: present
noownershipgroup: True
- name: Delete a host cluster
ibm.spectrum_virtualize.ibm_svc_hostcluster:
clustername: "{{clustername}}"
domain: "{{domain}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/playbook.debug
name: hostcluster0
state: absent
removeallhosts: True