purestorage.flasharray.purefa_fs 模块 – 管理 FlashArray 文件系统
注意
此模块是 purestorage.flasharray 集合 (版本 1.32.0) 的一部分。
如果您使用的是 ansible
软件包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install purestorage.flasharray
。您需要其他要求才能使用此模块,有关详细信息,请参见 要求。
要在 playbook 中使用它,请指定:purestorage.flasharray.purefa_fs
。
purestorage.flasharray 1.5.0 中的新增功能
概要
创建/删除 FlashArray 文件系统
要求
在执行此模块的主机上需要以下要求。
python >= 3.3
purestorage >= 1.19
py-pure-client >= 1.26.0
netaddr
requests
pycountry
urllib3
参数
参数 |
注释 |
---|---|
具有管理员权限用户的 FlashArray API 令牌。 |
|
禁用调试日志中的不安全证书警告 选项
|
|
定义在删除时是否要清除文件系统或将其保留在回收站中。 选项
|
|
FlashArray 管理 IPv4 地址或主机名。 |
|
将文件系统移入或移出 pod 提供要将文件系统移动到的 pod 的名称 Pod 名称在阵列中必须唯一 要移动到本地阵列,请指定 这不是幂等的 - 在 playbook 中使用 |
|
文件系统的名称 |
|
将指定文件系统重命名为的值 重命名仅适用于当前文件系统所在的容器。 不需要指定 pod 名称,因为这是隐含的。 |
|
定义文件系统是否应该存在。 选项
|
注释
注意
此模块需要
purestorage
和py-pure-client
Python 库特定模块可能需要其他 Python 库。
如果未直接将 *fa_url* 和 *api_token* 参数传递到模块,则必须设置
PUREFA_URL
和PUREFA_API
环境变量
示例
- name: Create file system foo
purestorage.flasharray.purefa_fs:
name: foo
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Delete and eradicate file system foo
purestorage.flasharray.purefa_fs:
name: foo
eradicate: true
state: absent
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Rename file system foo to bar
purestorage.flasharray.purefa_fs:
name: foo
rename: bar
fa_url: 10.10.10.2
api_token: e31060a7-21fc-e277-6240-25983c6c4592