ibm.storage_virtualize.ibm_svc_manage_consistgrp_flashcopy 模块 – 此模块管理 IBM Storage Virtualize 系列系统上的 FlashCopy 一致性组

注意

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

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

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

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

ibm.storage_virtualize 1.4.0 中的新增功能

概要

  • 管理“mkfcconsistgrp”和“rmfcconsistgrp”卷命令的 Ansible 接口。

参数

参数

注释

clustername

字符串 / 必需

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

domain

字符串

Storage Virtualize 系统的域名。

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

force

布尔值

如果指定为 True,则在删除 FlashCopy 一致性组时删除所有关联的 FlashCopy 映射。

当 *state=absent* 时有效,用于删除 FlashCopy 一致性组。

选项

  • false

  • true

log_path

字符串

调试日志文件的路径。

name

字符串 / 必需

指定 FlashCopy 一致性组的名称。

noownershipgroup

布尔值

如果指定为 True,则一致性组将从所有关联的所有权组中删除。

参数 *noownershipgroup* 和 *ownershipgroup* 是互斥的。

当 *state=present* 时有效,用于修改 FlashCopy 一致性组。

选项

  • false

  • true

ownershipgroup

字符串

指定所有权组的名称。

参数 *ownershipgroup* 和 *noownershipgroup* 是互斥的。

当 *state=present* 时有效,用于创建或修改 FlashCopy 一致性组。

password

字符串

Storage Virtualize 系统的 REST API 密码。

如果不使用 *token* 来验证用户,则参数 *username* 和 *password* 是必需的。

state

字符串 / 必需

创建 (present) 或删除 (absent) FlashCopy 一致性组。

选项

  • "present"

  • "absent"

token

字符串

在 ibm.storage_virtualize 1.5.0 中添加

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

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

username

字符串

Storage Virtualize 系统的 REST API 用户名。

如果不使用 *token* 来验证用户,则参数 *username* 和 *password* 是必需的。

validate_certs

布尔值

验证证书。

选项

  • false ← (默认)

  • true

注释

注意

  • 此模块支持 check_mode

示例

- name: Create a FlashCopy consistency group
  ibm.storage_virtualize.ibm_svc_manage_consistgrp_flashcopy:
    clustername: "{{clustername}}"
    domain: "{{domain}}"
    username: "{{username}}"
    password: "{{password}}"
    log_path: /tmp/playbook.debug
    name: consistgroup-name
    state: present
    ownershipgroup: ownershipgroup-name
- name: Delete a FlashCopy consistency group
  ibm.storage_virtualize.ibm_svc_manage_consistgrp_flashcopy:
    clustername: "{{clustername}}"
    domain: "{{domain}}"
    username: "{{username}}"
    password: "{{password}}"
    log_path: /tmp/playbook.debug
    name: consistgroup-name
    state: absent
    force: true

作者

  • Sreshtant Bohidar(@Sreshtant-Bohidar)