ibm.spectrum_virtualize.ibm_svc_manage_replication module – This module manages remote copies (or rcrelationship) on IBM Spectrum Virtualize family storage systems
Note
This module is part of the ibm.spectrum_virtualize collection (version 2.0.0).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install ibm.spectrum_virtualize.
To use it in a playbook, specify: ibm.spectrum_virtualize.ibm_svc_manage_replication.
Note
The ibm.spectrum_virtualize collection has been renamed to ibm.storage_virtualize and will be removed from Ansible 12. If you use content from ibm.spectrum_virtualize, please update FQCNs in your playbooks and roles! When creating new playbooks or roles, directly use content from ibm.storage_virtualize instead.
New in ibm.spectrum_virtualize 1.3.0
Synopsis
- Ansible interface to manage remote copy replication. 
Parameters
| Parameter | Comments | 
|---|---|
| Specifies the auxiliary volume name when creating a remote copy. | |
| The hostname or management IP of the Spectrum Virtualize storage system. | |
| Specifies a consistency group that this relationship will join. If not specified by user, the relationship is created as a stand-alone relationship. Applies when state=present. | |
| Specifies the mirror type of the remote copy. ‘metro’ means MetroMirror, ‘global’ means GlobalMirror, and ‘GMCV’ means GlobalMirror with change volume. If not specified, a MetroMirror remote copy will be created when creating a remote copy state=present. Choices: 
 | |
| Specifies the cycle period in seconds. The default cycle is of 300 seconds. | |
| Domain for the Spectrum Virtualize storage system. Valid when hostname is used for the parameter clustername. | |
| Specifies that the relationship must be deleted even if it results in the secondary volume containing inconsistent data. Choices: 
 | |
| Path of debug log file. | |
| Specifies the master volume name when creating a remote copy. | |
| Specifies the name to assign to the new remote copy relationship or to operate on the existing remote copy. | |
| Specifies whether to remove the specified relationship from a consistency group, making the relationship a stand-alone relationship. Applies when state=present. Choices: 
 | |
| REST API password for the Spectrum Virtualize storage system. The parameters username and password are required if not using token to authenticate a user. | |
| Specifies the name of remote cluster when creating a remote copy. | |
| Creates or updates ( Choices: 
 | |
| Specifies whether to create a synchronized relationship. Choices: 
 | |
| The authentication token to verify a user on the Spectrum Virtualize storage system. To generate a token, use the ibm_svc_auth module. | |
| REST API username for the Spectrum Virtualize storage system. The parameters username and password are required if not using token to authenticate a user. | |
| Validates certification. Choices: 
 | 
Notes
Note
- The parameters primary and aux are mandatory only when a remote copy relationship does not exist. 
- This module supports - check_mode.
Examples
- name: Create remote copy
  ibm.spectrum_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.spectrum_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.spectrum_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.spectrum_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
