ibm.storage_virtualize.ibm_svc_manage_replication 模块 – 此模块管理 IBM Storage Virtualize 系列系统上的远程复制(或 rcrelationship)
注意
此模块是 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_manage_replication
。
ibm.storage_virtualize 1.3.0 中的新增功能
概要
管理远程复制的 Ansible 接口。
参数
参数 |
注释 |
---|---|
创建远程复制时指定辅助卷名称。 |
|
Storage Virtualize 系统的主机名或管理 IP。 |
|
指定此关系将加入的一致性组。如果用户未指定,则关系将作为独立关系创建。 应用于 state=present。 |
|
指定远程复制的镜像类型。‘metro’ 表示 MetroMirror,‘global’ 表示 GlobalMirror,‘GMCV’ 表示具有更改卷的 GlobalMirror。 如果未指定,则在创建远程复制 state=present 时将创建 MetroMirror 远程复制。 选项
|
|
指定以秒为单位的周期。默认周期为 300 秒。 |
|
Storage Virtualize 系统的域名。 当主机名用于参数 clustername 时有效。 |
|
指定即使导致辅助卷包含不一致的数据也必须删除关系。 选项
|
|
调试日志文件的路径。 |
|
创建远程复制时指定主卷名称。 |
|
指定要分配给新远程复制关系的名称或要操作的现有远程复制。 |
|
指定是否从一致性组中删除指定的关系,从而使关系成为独立关系。 应用于 state=present。 选项
|
|
Storage Virtualize 系统的 REST API 密码。 如果不使用 token 来验证用户,则需要参数 username 和 password。 |
|
创建远程复制时指定远程集群的名称。 |
|
创建或更新 ( 选项
|
|
指定是否创建同步关系。 选项
|
|
用于在 Storage Virtualize 系统上验证用户的身份验证令牌。 要生成令牌,请使用 ibm_svc_auth 模块。 |
|
Storage Virtualize 系统的 REST API 用户名。 如果不使用 token 来验证用户,则需要参数 username 和 password。 |
|
验证证书。 选项
|
备注
注意
只有在远程复制关系不存在时,参数 primary 和 aux 才必须。
此模块支持
check_mode
。
示例
- name: Create remote copy
ibm.storage_virtualize.ibm_svc_manage_replication:
name: sample_rcopy
clustername: "{{clustername}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/ansible.log
state: present
remotecluster: "{{remotecluster}}"
master: SourceVolume0
aux: TargetVolume0
copytype: global
sync: true
consistgrp: sample_rccg
register: result
- name: Exclude the remote copy from consistency group
ibm.storage_virtualize.ibm_svc_manage_replication:
name: sample_rcopy2
clustername: "{{clustername}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/ansible.log
state: present
noconsistgrp: true
- name: Delete remote copy
ibm.storage_virtualize.ibm_svc_manage_replication:
name: sample_rcopy3
clustername: "{{clustername}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/ansible.log
state: absent
- name: Create GlobalMirror remote copy relationship with change volume
ibm.storage_virtualize.ibm_svc_manage_replication:
name: sample_rcopy4
clustername: "{{clustername}}"
username: "{{username}}"
password: "{{password}}"
log_path: /tmp/ansible.log
state: present
remotecluster: "{{remotecluster}}"
master: SourceVolume1
aux: TargetVolume1
copytype: GMCV
sync: true
register: result