ibm.storage_virtualize.ibm_svc_manage_sra 模块 – 此模块管理 IBM Storage Virtualize 系列系统上的远程支持协助配置

注意

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

ibm.storage_virtualize 1.7.0 中的新增功能

概要

  • 用于管理 ‘chsra’ 支持远程协助命令的 Ansible 接口。

参数

参数

注释

clustername

字符串 / 必需

Storage Virtualize 系统的hostname或管理 IP。

domain

字符串

Storage Virtualize 系统的域。

当 hostname 用于参数 clustername 时有效。

log_path

字符串

调试日志文件的路径。

name

列表 / elements=string

指定要定义的支持中心或代理的唯一名称列表。

support=remote 时,需要启用远程支持协助。

password

字符串

Storage Virtualize 系统的 REST API 密码。

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

sra_ip

列表 / elements=string

指定新的支持中心或代理服务器的 IP 地址或完全限定域名列表。

support=remotestate=enabled 时,需要启用支持远程协助。

sra_port

列表 / elements=string

指定新的支持中心或代理服务器的端口号列表。

support=remotestate=enabled 时,需要启用支持远程协助。

state

字符串 / 必需

启用 (enabled) 或禁用 (disabled) 远程支持协助。

选项

  • "enabled"

  • "disabled"

support

字符串 / 必需

指定通过 remoteonsite 的支持协助。

选项

  • "remote"

  • "onsite"

token

字符串

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

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

username

字符串

Storage Virtualize 系统的 REST API 用户名。

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

validate_certs

布尔值

验证证书。

选项

  • false ← (默认)

  • true

备注

注意

  • 此模块支持 check_mode

示例

- name: Enable support remote assistance
  ibm.storage_virtualize.ibm_svc_manage_sra:
    clustername: "{{ clustername }}"
    domain: "{{ domain }}"
    username: "{{ username }}"
    password: "{{ password }}"
    log_path: "{{ log_path }}"
    support: remote
    state: enabled
    name:
      - proxy_1
      - proxy_2
      - proxy_3
    sra_ip:
      - '0.0.0.0'
      - '1.1.1.1'
      - '2.1.2.2'
    sra_port:
      - 8888
      - 9999
      - 8800
- name: Disable support remote assistance
  ibm.storage_virtualize.ibm_svc_manage_sra:
    clustername: "{{ clustername }}"
    domain: "{{ domain }}"
    username: "{{ username }}"
    password: "{{ password }}"
    log_path: "{{ log_path }}"
    support: remote
    state: disabled
    name:
      - proxy_1
      - proxy_2
      - proxy_3

作者

  • Sanjaikumaar M (@sanjaikumaar)