ibm.storage_virtualize.ibm_svc_manage_replicationgroup 模块 – 此模块管理 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_svc_manage_replicationgroup

ibm.storage_virtualize 1.3.0 中的新增功能

概要

  • 管理“mkrcconsistgrp”、“chrcconsistgrp”和“rmrcconsistgrp”远程复制一致性组命令的 Ansible 接口。

参数

参数

注释

clustername

字符串 / 必需

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

copytype

字符串

指定远程复制的镜像类型。“metro”表示 MetroMirror,“global”表示 GlobalMirror。

如果未指定,则在创建远程复制state=present时将创建 MetroMirror 远程复制。

选项

  • "metro"

  • "global"

cyclingmode

字符串

指定 Global Mirror 对关系的行为。

活动-活动关系和循环模式设置为“多”的关系必须始终使用更改卷进行配置。

state=presentcopytype=global时适用。

选项

  • "multi"

  • "none"

cyclingperiod

整数

指定以秒为单位的循环周期。

domain

字符串

Storage Virtualize 系统的域。

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

force

布尔值

如果用于删除一致性组,则指定您希望系统在删除组之前删除属于该组的任何关系。

如果用于启动一致性组,则指定您希望系统即使在同步过程中导致一致性暂时丢失的情况下也要处理复制操作。

如果一致性组处于 ConsistentStopped 状态,但未同步或处于空闲状态,则需要此参数 - 除非配置了一致性保护。

选项

  • false

  • true

log_path

字符串

调试日志文件的路径。

name

字符串 / 必需

指定新一致性组的名称。

password

字符串

Storage Virtualize 系统的 REST API 密码。

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

remotecluster

字符串

指定远程系统的名称。仅在创建一致性组时使用。

state

字符串 / 必需

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

选项

  • "absent"

  • "present"

token

字符串

在 ibm.storage_virtualize 1.5.0 中添加

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

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

username

字符串

Storage Virtualize 系统的 REST API 用户名。

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

validate_certs

布尔值

验证证书。

选项

  • false ← (默认)

  • true

备注

注意

  • 此模块支持 check_mode

示例

- name: Define a new rc consistency group
  ibm.storage_virtualize.ibm_svc_manage_replicationgroup:
    clustername: "{{clustername}}"
    domain: "{{domain}}"
    username: "{{username}}"
    password: "{{password}}"
    log_path: /tmp/playbook.debug
    name: rccg4test
    remotecluster: remotecluster
    state: present
- name: Delete rc consistency group
  ibm.storage_virtualize.ibm_svc_manage_replicationgroup:
    clustername: "{{clustername}}"
    domain: "{{domain}}"
    username: "{{username}}"
    password: "{{password}}"
    log_path: /tmp/playbook.debug
    name: rccg4test
    force: true
    state: absent
- name: Update rc consistency group
  ibm.storage_virtualize.ibm_svc_manage_replicationgroup:
    clustername: "{{clustername}}"
    domain: "{{domain}}"
    username: "{{username}}"
    password: "{{password}}"
    log_path: /tmp/playbook.debug
    name: rccg4test
    cyclingperiod: 60
    state: present

作者

  • rohit(@rohitk-github)