ibm.spectrum_virtualize.ibm_sv_manage_ip_partnership 模块 – 此模块管理 IBM Spectrum Virtualize 系列存储系统上的 IP 伙伴关系

注意

此模块是 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_ip_partnership

注意

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

ibm.spectrum_virtualize 1.9.0 中的新增功能

概要

  • 管理本地和远程系统上 ‘mkippartnership’、‘rmpartnership’ 和 ‘chpartnership’ 命令的 Ansible 接口。

参数

参数

注释

backgroundcopyrate

整数

指定可用于后台复制操作的聚合链路带宽的最大百分比。这是一个从 0 到 100 的数值。默认值为 50。

state=present 时有效。

clustername

字符串 / 必填

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

compressed

字符串

指定是否为此伙伴关系启用压缩。

state=present 时有效。

选择

  • "yes"

  • "no"

domain

字符串

Spectrum Virtualize 存储系统的域。

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

link1

字符串

指定用于 Spectrum Virtualize 存储系统的 WAN 链路 1 的端口集名称。

state=present 时有效,用于创建 IP 伙伴关系。

link2

字符串

指定用于 Spectrum Virtualize 存储系统的 WAN 链路 2 的端口集名称。

state=present 时有效,用于创建 IP 伙伴关系。

linkbandwidthmbits

整数

指定两个集群系统(系统)之间 RC 链路的聚合带宽,单位为兆比特每秒 (Mbps)。这是一个从 1 到 100000 的数值。

state=present 时有效。

log_path

字符串

调试日志文件的路径。

password

字符串

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

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

remote_cluster_id

字符串

指定伙伴系统的伙伴关系 ID。

state=present 时,修改现有 IP 伙伴关系时需要。

state=absent 时,删除现有 IP 伙伴关系时需要。

remote_clusterip

字符串

指定伙伴系统 IP 地址,IPv4 或 IPv6。

state=present 时,创建 IP 伙伴关系时需要。

remote_clustername

字符串 / 必填

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

remote_domain

字符串

远程 Spectrum Virtualize 存储系统的域。

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

remote_link1

字符串

指定用于远程 Spectrum Virtualize 存储系统的 WAN 链路 1 的端口集名称。

state=present 时有效,用于创建 IP 伙伴关系。

remote_link2

字符串

指定用于远程 Spectrum Virtualize 存储系统的 WAN 链路 2 的端口集名称。

state=present 时有效,用于创建 IP 伙伴关系。

remote_password

字符串

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

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

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

state

字符串 / 必填

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

选择

  • "present"

  • "absent"

token

字符串

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

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

type

字符串

指定伙伴关系的 Internet 协议 (IP) 地址格式。

state=present 时有效。

选择

  • "ipv4"

  • "ipv6"

username

字符串

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

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

validate_certs

布尔值

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

选择

  • false ←(默认)

  • true

注意

注意

  • 此模块支持 check_mode

示例

- name: Create an IP partnership
  ibm.spectrum_virtualize.ibm_sv_manage_ip_partnership:
    clustername: "{{ clustername }}"
    domain: "{{ domain }}"
    username: "{{ username }}"
    password: "{{ password }}"
    remote_clustername: "{{ remote_clustername }}"
    remote_domain: "{{ remote_domain }}"
    remote_username: "{{ remote_username }}"
    remote_password: "{{ remote_password }}"
    log_path: "/tmp/debug.log"
    remote_clusterip: "{{ partner_ip }}"
    type: "ipv4"
    linkbandwidthmbits: 100
    backgroundcopyrate: 50
    compressed: yes
    link1: "{{ portsetname }}"
    remote_link1: "{{ remote_portsetname}}"
    state: "present"
- name: Update an IP partnership
  ibm.spectrum_virtualize.ibm_sv_manage_ip_partnership:
    clustername: "{{ clustername }}"
    domain: "{{ domain }}"
    username: "{{ username }}"
    password: "{{ password }}"
    remote_clustername: "{{ remote_clustername }}"
    remote_domain: "{{ remote_domain }}"
    remote_username: "{{ remote_username }}"
    remote_password: "{{ remote_password }}"
    log_path: "/tmp/debug.log"
    remote_cluster_id: "{{ cluster_id }}"
    linkbandwidthmbits: 110
    backgroundcopyrate: 60
    compressed: no
    state: "present"
- name: Remove an IP partnership
  ibm.spectrum_virtualize.ibm_sv_manage_ip_partnership:
    clustername: "{{ clustername }}"
    username: "{{ username }}"
    password: "{{ password }}"
    remote_clustername: "{{ remote_clustername }}"
    remote_username: "{{ remote_username }}"
    remote_password: "{{ remote_password }}"
    log_path: "/tmp/debug.log"
    remote_cluster_id: "{{ cluster_id }}"
    state: "absent"

作者

  • Sreshtant Bohidar(@Sreshtant-Bohidar)