purestorage.flasharray.purefa_dirsnap 模块 – 管理 FlashArray 文件系统目录快照

注意

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

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

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

要在剧本中使用它,请指定:purestorage.flasharray.purefa_dirsnap

purestorage.flasharray 1.9.0 中的新增功能

概要

  • 创建/删除 FlashArray 文件系统目录快照

  • 完整的快照名称以 DIR.CLIENT_NAME.SUFFIX 的形式构建,其中 DIR 是托管的目录名称,CLIENT_NAME 是客户端名称,SUFFIX 是后缀。

  • 客户端可见的快照名称是 CLIENT_NAME.SUFFIX。

要求

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

  • python >= 3.3

  • purestorage >= 1.19

  • py-pure-client >= 1.26.0

  • netaddr

  • requests

  • pycountry

  • urllib3

参数

参数

注释

api_token

字符串

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

client

字符串 / 必需

客户端可见快照名称的客户端名称部分

disable_warnings

布尔值

在 purestorage.flasharray 1.29.0 中添加

在调试日志中禁用不安全的证书警告

选择

  • false ← (默认)

  • true

eradicate

布尔值

定义删除快照时是彻底删除还是留在回收站中

选择

  • false ← (默认)

  • true

fa_url

字符串

FlashArray 管理 IPv4 地址或主机名。

filesystem

字符串 / 必需

目录链接到的文件系统的名称。

keep_for

整数

保留期,之后快照将被彻底删除

以秒为单位指定。范围 300 - 31536000(5 分钟到 1 年)

值为 0 将设置无保留期。

如果在创建时未指定,则默认为 0(无保留期)

name

字符串 / 必需

要快照的目录的名称

new_client

字符串

在 purestorage.flasharray 1.12.0 中添加

执行重命名时的新客户端名称

new_suffix

字符串

在 purestorage.flasharray 1.12.0 中添加

执行重命名时的新后缀

rename

布尔值

在 purestorage.flasharray 1.12.0 中添加

是否重命名目录快照

可以更改快照客户端名称和后缀

需要与 new_clientnew_suffix 一起使用

选择

  • false ← (默认)

  • true

state

字符串

定义目录快照是否存在。

选择

  • "absent"

  • "present" ← (默认)

suffix

字符串

要使用的快照后缀

说明

注意

  • 此模块需要 purestoragepy-pure-client Python 库

  • 特定模块可能需要其他 Python 库。

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

示例

- name: Create a snapshot direcotry foo in filesysten bar for client test with suffix test
  purestorage.flasharray.purefa_dirsnap:
    name: foo
    filesystem: bar
    client: test
    suffix: test
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

- name: Update retention time for a snapshot foo:bar.client.test
  purestorage.flasharray.purefa_dirsnap:
    name: foo
    filesystem: bar
    client: client
    suffix: test
    keep_for: 300  # 5 minutes
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

- name: Delete snapshot foo:bar.client.test
  purestorage.flasharray.purefa_dirsnap:
    name: foo
    filesystem: bar
    client: client
    suffix: test
    state: absent
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

- name: Recover deleted snapshot foo:bar.client.test
  purestorage.flasharray.purefa_dirsnap:
    name: foo
    filesystem: bar
    client: client
    suffix: test
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

- name: Delete and eradicate snapshot foo:bar.client.test
  purestorage.flasharray.purefa_dirsnap:
    name: foo
    filesystem: bar
    client: client
    suffix: test
    state: absent
    eradicate: true
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

- name: Eradicate deleted snapshot foo:bar.client.test
  purestorage.flasharray.purefa_dirsnap:
    name: foo
    filesystem: bar
    client: client
    suffix: test
    eradicate: true
    state: absent
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

- name: Rename snapshot
  purestorage.flasharray.purefa_dirsnap:
    name: foo
    filesystem: bar
    client: client
    suffix: test
    rename: true
    new_client: client2
    new_suffix: test2
    fa_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592

作者

  • Pure Storage Ansible 团队 (@sdodsley)