purestorage.flasharray.purefa_pod_replica 模块 – 管理 Pure Storage FlashArray 之间的 ActiveDR pod 副本链接
注意
此模块是 purestorage.flasharray 集合(版本 1.32.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install purestorage.flasharray
。您需要进一步的要求才能使用此模块,请参阅 要求 了解详细信息。
要在 playbook 中使用它,请指定: purestorage.flasharray.purefa_pod_replica
。
purestorage.flasharray 1.0.0 中的新功能
概要
此模块管理 Pure Storage FlashArray 之间的 ActiveDR pod 副本链接。
要求
执行此模块的主机需要以下要求。
python >= 3.3
purestorage >= 1.19
py-pure-client >= 1.26.0
netaddr
requests
pycountry
urllib3
参数
参数 |
注释 |
---|---|
具有管理员权限的用户的 FlashArray API 令牌。 |
|
在调试日志中禁用不安全的证书警告 选项
|
|
FlashArray 管理 IPv4 地址或主机名。 |
|
ActiveDR 源 pod 名称 |
|
暂停/取消暂停 pod 副本链接 选项
|
|
创建或修改 pod 副本链接 选项
|
|
在其上创建副本的远程阵列名称。 |
|
目标 pod 的名称 不能与本地 pod 相同。 |
注意
注意
此模块需要
purestorage
和py-pure-client
Python 库特定模块可能需要其他 Python 库。
如果未将 fa_url 和 api_token 参数直接传递给模块,则必须设置
PUREFA_URL
和PUREFA_API
环境变量
示例
- name: Create new pod replica link from foo to bar on arrayB
purestorage.flasharray.purefa_pod_replica:
name: foo
target_array: arrayB
target_pod: bar
state: present
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Pause an pod replica link
purestorage.flasharray.purefa_pod_replica:
name: foo
pause: true
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Delete pod replica link
purestorage.flasharray.purefa_pod_replica:
name: foo
state: absent
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592