ibm.storage_virtualize.ibm_sv_manage_storage_partition 模块 – 此模块管理 IBM Storage Virtualize 系列系统上的存储分区

注意

此模块是 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_storage_partition

ibm.storage_virtualize 2.1.0 中的新增功能

概要

  • 此 Ansible 模块提供了一个接口,用于通过“mksyslogserver”、“chsyslogserver”和“rmsyslogserver”Storage Virtualize 命令管理 syslog 服务器。

  • 基于策略的高可用性 (HA) 解决方案使用存储分区。这些分区包含卷、卷组、主机和主机到卷的映射。

参数

参数

注释

clustername

字符串 / 必需

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

deletenonpreferredmanagementobjects

布尔值

如果存储分区具有复制策略和关联的对象(例如卷、卷组、主机或主机映射),则需要两个deletenonpreferredmanagementobjectsdeletepreferredmanagementobjects 参数之一。如果指定,则该命令仅在活动管理系统上允许,并要求活动管理系统与首选管理系统相同。

适用于state=absent

选项

  • false

  • true

deletepreferredmanagementcopy

布尔值

此参数应与noreplicationpolicy 参数一起使用,并且活动管理系统必须与首选管理系统**不同**。

选项

  • false

  • true

deletepreferredmanagementobjects

布尔值

如果存储分区具有复制策略和关联的对象(例如卷、卷组、主机或主机映射),则需要两个deletenonpreferredmanagementobjectsdeletepreferredmanagementobjects 参数之一。如果无法在首选管理系统上管理存储分区,则使用deletepreferredmanagementobjects 来删除存储分区并取消分配复制策略。

适用于state=absent

选项

  • false

  • true

domain

字符串

Storage Virtualize 系统的域名。

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

draft

布尔值

在 ibm.storage_virtualize 2.5.0 中添加

如果指定并设置为 true,则创建处于草稿状态的分区。如果设置为 false,则创建新的已发布状态分区或将现有分区移至已发布状态。

适用于state=present

选项

  • false

  • true

log_path

字符串

调试日志文件的路径。

name

字符串 / 必需

指定存储分区的名称。

noreplicationpolicy

布尔值

取消分配卷组当前的复制策略。如果在没有deletepreferredmanagementcopy 参数的情况下使用此参数,则仅在活动管理系统上允许。

选项

  • false

  • true

partition_to_merge

字符串

在 ibm.storage_virtualize 2.5.0 中添加

如果指定,则将partition_to_merge 及其所有对象合并到用name 指定的分区中。

合并后,用partition_to_merge 指定的分区将从分区列表中消失。

适用于state=present

password

字符串

Storage Virtualize 系统的 REST API 密码。

如果不使用token 来验证用户,则需要usernamepassword 参数。

preferredmanagementsystem

字符串

更改存储分区的首选管理系统。

仅允许从作为活动管理系统的系统进行操作。

replicationpolicy

字符串

指定存储分区的复制策略。

state

字符串 / 必需

创建、更新(present)或删除(absent)存储分区。

选项

  • "present"

  • "absent"

token

字符串

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

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

username

字符串

Storage Virtualize 系统的 REST API 用户名。

如果不使用token 来验证用户,则需要usernamepassword 参数。

validate_certs

布尔值

验证证书。

选项

  • false ← (默认)

  • true

备注

注意

  • 此模块支持 check_mode

示例

- name: Create Storage Partition
  ibm.storage_virtualize.ibm_sv_manage_storage_partition:
   clustername: '{{clustername}}'
   username: '{{username}}'
   password: '{{password}}'
   name: partition1
   state: present
   replicationpolicy: ha_policy_1
- name: Delete the storage partition
  ibm.storage_virtualize.ibm_sv_manage_storage_partition:
   clustername: '{{clustername}}'
   username: '{{username}}'
   password: '{{password}}'
   name: partition1
   state: absent
- name: Create a partition in draft state
  ibm.storage_virtualize.ibm_sv_manage_storage_partition:
   clustername: "{{ clustername }}"
   domain: "{{ domain }}"
   username: "{{ username }}"
   password: "{{ password }}"
   log_path: /tmp/playbook.debug
   name: partition0
   state: present
   draft: true
- name: Publish a draft partition
  ibm.storage_virtualize.ibm_sv_manage_storage_partition:
   clustername: "{{ clustername }}"
   domain: "{{ domain }}"
   username: "{{ username }}"
   password: "{{ password }}"
   log_path: /tmp/playbook.debug
   name: partition0
   state: present
   draft: false
- name: Merge partition (partition1) into partition (partition0)
  ibm.storage_virtualize.ibm_sv_manage_storage_partition:
   clustername: "{{ clustername }}"
   domain: "{{ domain }}"
   username: "{{ username }}"
   password: "{{ password }}"
   log_path: /tmp/playbook.debug
   name: partition0
   state: present
   partition_to_merge: partition1

作者

  • Shilpi Jain (@Shilpi-J)

  • Sumit Kumar Gupta (@sumitguptaibm)