ibm.spectrum_virtualize.ibm_sv_manage_fc_partnership 模块 – 此模块在 IBM Spectrum Virtualize 系列存储系统上配置和管理光纤通道 (FC) 伙伴关系

注意

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

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

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

要在 Playbook 中使用它,请指定:ibm.spectrum_virtualize.ibm_sv_manage_fc_partnership

注意

ibm.spectrum_virtualize 集合已重命名为 ibm.storage_virtualize,并将从 Ansible 12 中删除。如果您使用 ibm.spectrum_virtualize 中的内容,请更新 Playbook 和角色中的 FQCN!创建新的 Playbook 或角色时,请直接使用 ibm.storage_virtualize 中的内容。

ibm.spectrum_virtualize 1.12.0 中的新增功能

概要

  • 用于管理 mkfcpartnership、chpartnership 和 rmpartnership 命令的 Ansible 接口。

参数

参数

注释

backgroundcopyrate

字符串

指定可用于后台复制操作的聚合链路带宽的最大百分比。该值必须在 0 - 100 的范围内。默认值为 50。

state=present 时有效。

clustername

字符串 / 必需

Spectrum Virtualize 存储系统的主机名或管理 IP。

domain

字符串

Spectrum Virtualize 存储系统的域。

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

linkbandwidthmbits

字符串

指定两个集群系统(系统)之间远程复制链路的聚合带宽,单位为兆比特每秒 (Mbps)。该值必须在 1 - 100000 的范围内。

state=present 时有效。

log_path

字符串

调试日志文件的路径。

password

字符串

Spectrum Virtualize 存储系统的 REST API 密码。

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

pbrinuse

字符串

指定是否在伙伴关系上使用基于策略的复制。

state=present 以更新伙伴关系时有效。

选项

  • "yes"

  • "no"

remote_clustername

字符串

远程 Spectrum Virtualize 存储系统的主机名或管理 IP。

remote_domain

字符串

远程 Spectrum Virtualize 存储系统的域。

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

remote_password

字符串

远程 Spectrum Virtualize 存储系统的 REST API 密码。

如果未使用 remote_token 验证用户,则需要参数 remote_usernameremote_password

remote_system

字符串

指定伙伴系统 ID 或名称。

remote_token

字符串

用于验证远程 Spectrum Virtualize 存储系统上用户的身份验证令牌。

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

remote_username

字符串

远程 Spectrum Virtualize 存储系统的 REST API 用户名。

如果未使用 remote_token 验证用户,则需要参数 remote_usernameremote_password

remote_validate_certs

布尔值

验证远程 Spectrum Virtualize 存储系统的证书。

选项

  • false ←(默认)

  • true

start

布尔值

指定启动伙伴关系。

state=present 时有效。

选项

  • false

  • true

state

字符串 / 必需

创建或更新(present)或删除(absent)FC 伙伴关系。

选项

  • "present"

  • "absent"

stop

布尔值

指定停止伙伴关系。

state=present 以更新伙伴关系时有效。

选项

  • false

  • true

token

字符串

用于验证 Spectrum Virtualize 存储系统上用户的身份验证令牌。

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

username

字符串

Spectrum Virtualize 存储系统的 REST API 用户名。

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

validate_certs

布尔值

验证本地 Spectrum Virtualize 存储系统的证书。

选项

  • false ←(默认)

  • true

备注

注意

  • 此模块支持 check_mode

示例

- name: Create an FC partnership and start the partnership
  ibm.spectrum_virtualize.ibm_sv_manage_fc_partnership:
    clustername: "{{clustername}}"
    username: "{{username}}"
    password: "{{password}}"
    remote_clustername: "{{remote_clustername}}"
    remote_username: "{{remote_username}}"
    remote_password: "{{remote_password}}"
    remote_system: "{{remote_system}}"
    linkbandwidthmbits: 50
    backgroundcopyrate: 50
    start: True
    state: present
- name: Update an FC partnership and stop the partnership
  ibm.spectrum_virtualize.ibm_sv_manage_fc_partnership:
    clustername: "{{clustername}}"
    username: "{{username}}"
    password: "{{password}}"
    remote_clustername: "{{remote_clustername}}"
    remote_username: "{{remote_username}}"
    remote_password: "{{remote_password}}"
    remote_system: "{{remote_system}}"
    linkbandwidthmbits: 40
    backgroundcopyrate: 20
    stop: True
    state: present
- name: Delete the FC partnership
  ibm.spectrum_virtualize.ibm_sv_manage_fc_partnership:
    clustername: "{{cluster}}"
    username: "{{username}}"
    password: "{{password}}"
    remote_clustername: "{{remote_clustername}}"
    remote_username: "{{remote_username}}"
    remote_password: "{{remote_password}}"
    remote_system: "{{remote_system}}"
    state: absent

作者

  • Sanjaikumaar M (@sanjaikumaar)