purestorage.flashblade.purefb_ra 模块 – 启用或禁用 Pure Storage FlashBlade 远程协助

注意

此模块是 purestorage.flashblade 集合(版本 1.19.1)的一部分。

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

要安装它,请使用:ansible-galaxy collection install purestorage.flashblade。您需要进一步的要求才能使用此模块,请参阅要求 以了解详细信息。

要在 Playbook 中使用它,请指定:purestorage.flashblade.purefb_ra

purestorage.flashblade 1.0.0 中的新增功能

概要

  • 为 Pure Storage FlashBlade 启用或禁用远程协助。

要求

在执行此模块的主机上需要以下要求。

  • python >= 3.9

  • py-pure-client

  • purity_fb >= 1.12.2

  • netaddr

  • datetime

  • pytz

  • distro

  • pycountry

  • urllib3

参数

参数

注释

api_token

字符串

具有管理员权限的用户的 FlashBlade API 令牌。

disable_warnings

布尔值

在 purestorage.flashblade 1.18.0 中添加

禁用不安全的证书警告

选择

  • false ← (默认)

  • true

duration

整数

在 purestorage.flashblade 1.18.0 中添加

指定远程协助会话的持续时间(以小时为单位)

它确定会话启动后保持活动状态的时间长度。

默认值: 24

fb_url

字符串

FlashBlade 管理 IP 地址或主机名。

state

字符串

定义远程协助的状态

当设置为 enable 时,可以使用 debug 模块公开 RA 端口。

选择

  • "present" ← (默认)

  • "absent"

注释

注意

  • 此模块需要 purity_fb Python 库

  • 如果 fb_urlapi_token 参数未直接传递给模块,则必须设置 PUREFB_URLPUREFB_API 环境变量

示例

- name: Enable Remote Assist port
  purestorage.flashblade.purefb_ra:
    fb_url: 10.10.10.2
    api_token: T-9f276a18-50ab-446e-8a0c-666a3529a1b6
- name: Disable Remote Assist port
  purestorage.flashblade.purefb_ra:
    state: absent
    fb_url: 10.10.10.2
    api_token: T-9f276a18-50ab-446e-8a0c-666a3529a1b6

作者

  • Pure Storage Ansible 团队 (@sdodsley)