ibm.storage_virtualize.ibm_svc_mdiskgrp 模块 – 此模块管理 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_mdiskgrp
。
ibm.storage_virtualize 1.0.0 版本新增
概要
用于管理 'mkmdiskgrp' 和 'rmmdiskgrp' 存储池命令的 Ansible 接口。
参数
参数 |
注释 |
---|---|
Storage Virtualize 系统的主机名或管理 IP。 |
|
定义 MDisk 组上数据缩减存储池 (DRP) 的使用。 当 state=present 时适用,用于创建存储池。 选择
|
|
Storage Virtualize 系统的域。 当主机名用于参数 clustername 时有效。 |
|
定义 MDisk 组使用 Easy Tier。 当 state=present 时适用,用于创建存储池。 选择
|
|
定义 MDisk 组使用加密。 当 state=present 时适用,用于创建存储池。 选择
|
|
指定 Easy Tier 可以迁移到 FlashCore 模块阵列上的最大过度分配,当阵列用作多层存储池中的顶层时。该值充当物理可用空间的乘数。 允许的值是 100%(默认)到 400% 范围内的百分比或关闭。将值设置为关闭会禁用此功能。 当 state=present 时适用。 |
|
指定此组的扩展大小(以 MB 为单位)。 当 state=present 时适用,用于创建存储池。 |
|
调试日志文件的路径。 |
|
指定要分配给新存储池的名称。 |
|
指定从存储池取消映射所有权组。 当 state=present 时适用,用于修改现有存储池。 选择
|
|
指定从存储池取消映射配置策略。 当 state=present 时适用,用于修改现有存储池。 选择
|
|
指定创建数据缩减子池。 noquota 和 size 参数是互斥的。 noquota 参数必须与设置为 yes 的 datareduction 一起使用,才能创建数据缩减子池。 noquota 参数必须在父数据缩减存储池中与 parentmdiskgrp 一起使用。 选择
|
|
指定现有存储池的旧名称。 当 state=present 时适用,用于重命名现有存储池。 |
|
指定要与存储池映射的所有权组的名称。 当 state=present 时适用。 |
|
子池的 Parentmdiskgrp。 当 state=present 时适用,用于创建存储池。 |
|
Storage Virtualize 系统的 REST API 密码。 如果未使用 token 验证用户身份,则需要参数 username 和 password。 |
|
指定要与存储池映射的配置策略的名称。 当 state=present 时适用。 |
|
指定将用于复制的伙伴集群的 ID 或名称。 当 state=present 时适用。 在 SV 版本 8.5.2.1 或更高版本中支持。 |
|
指定复制存储池的唯一标识符,该标识符应与复制服务器中存在的存储池相同。 当 state=present 时适用。 在 SV 版本 8.5.2.1 或更高版本中支持。 |
|
如果设置,则会删除本地系统上此存储池与远程系统上存储池之间的任何链接。 当 state=present 时适用,用于修改现有存储池。 在 SV 版本 8.5.2.1 或更高版本中支持。 选择
|
|
指定创建受保护的子池。 仅在创建子池期间适用。 选择
|
|
指定子池容量。该值必须是数字值(并且是扩展大小的整数倍)。 当 state=present 时适用,用于创建存储池。 |
|
创建( 选择
|
|
用于验证 Storage Virtualize 系统上用户的身份验证令牌。 要生成令牌,请使用 ibm.storage_virtualize.ibm_svc_auth 模块。 |
|
子池的单位。 当 state=present 时适用,用于创建存储池。 |
|
Storage Virtualize 系统的 REST API 用户名。 如果未使用 token 验证用户身份,则需要参数 username 和 password。 |
|
验证证书。 选择
|
|
指定是否为此存储池启用卷保护。默认值为“yes”。 当 state=present 时适用。 选择
|
|
如果指定,则当存储池中已用磁盘容量首次超过指定阈值时,会生成警告。 默认值为 80。要禁用它,请将该值指定为 0。 在创建存储池时,当 state=present 时适用。 |
备注
注意
此模块支持
check_mode
。
示例
- name: Create mdisk group
ibm.storage_virtualize.ibm_svc_mdiskgrp:
clustername: "{{clustername}}"
domain: "{{domain}}"
username: "{{username}}"
password: "{{password}}"
name: pool1
provisioningpolicy: pp0
replicationpoollinkuid: 000000000000000
replication_partner_clusterid: 000000000032432342
etfcmoverallocationmax: 120
state: present
datareduction: no
easytier: auto
encrypt: no
ext: 1024
- name: Create childpool with ownershipgroup
ibm.storage_virtualize.ibm_svc_mdiskgrp:
clustername: "{{clustername}}"
domain: "{{domain}}"
username: "{{username}}"
password: "{{password}}"
name: childpool0
ownershipgroup: owner0
parentmdiskgrp: pool1
state: present
datareduction: no
easytier: auto
encrypt: no
ext: 1024
- name: Create a safeguarded backup location
ibm.storage_virtualize.ibm_svc_mdiskgrp:
clustername: "{{clustername}}"
token: "{{results.token}}"
log_path: "{{log_path}}"
parentmdiskgrp: Pool1
name: Pool1child1
datareduction: 'yes'
safeguarded: True
ext: 1024
noquota: True
state: present
- name: Delete mdisk group
ibm.storage_virtualize.ibm_svc_mdiskgrp:
clustername: "{{clustername}}"
domain: "{{domain}}"
username: "{{username}}"
password: "{{password}}"
name: pool1
state: absent
- name: Delete a safeguarded backup location
ibm.storage_virtualize.ibm_svc_mdiskgrp:
clustername: "{{clustername}}"
token: "{{results.token}}"
log_path: "{{log_path}}"
parentmdiskgrp: Pool1
name: Pool1child1
state: absent