Management of Pure Storage FlashBlade
You will need the purity_fb
python package in your python installation
path that is running salt.
pip install purity_fb
Configure Pure Storage FlashBlade authentication. Use one of the following three methods.
From the minion config
pure_tags:
fb:
san_ip: management vip or hostname for the FlashBlade
api_token: A valid api token for the FlashBlade being managed
From environment (PUREFB_IP and PUREFB_API)
From the pillar (PUREFB_IP and PUREFB_API)
Simon Dodsley (simon@purestorage.com)
new
purity_fb
all
New in version 2019.2.0.
Create a filesystem on a Pure Storage FlashBlade.
Will return False if filesystem already exists.
New in version 2019.2.0.
name of filesystem (truncated to 63 characters)
(Optional) Sharing protocol (NFS, CIFS or HTTP). If not specified default is NFS
(Optional) Are snapshots enabled on the filesystem. Default is False
(Optional) export rules for NFS. If not specified default is
*(rw,no_root_squash)
. Refer to Pure Storage documentation for
formatting rules.
if specified capacity of filesystem. If not specified default to 32G. Refer to Pure Storage documentation for formatting rules.
CLI Example:
salt '*' purefb.fs_create foo proto=CIFS
salt '*' purefb.fs_create foo size=10T
Delete a share on a Pure Storage FlashBlade.
Will return False if filesystem doesn't exist or is already in a deleted state.
New in version 2019.2.0.
name of filesystem
(Optional) Eradicate filesystem after deletion if True. Default is False
CLI Example:
salt '*' purefb.fs_delete foo eradicate=True
Eradicate a deleted filesystem on a Pure Storage FlashBlade.
Will return False is filesystem is not in a deleted state.
New in version 2019.2.0.
name of filesystem
CLI Example:
salt '*' purefb.fs_eradicate foo
Resize an existing filesystem on a Pure Storage FlashBlade.
Will return False if new size is less than or equal to existing size.
New in version 2019.2.0.
name of filesystem
New capacity of filesystem. Refer to Pure Storage documentation for formatting rules.
CLI Example:
salt '*' purefb.fs_extend foo 10T
Update filesystem on a Pure Storage FlashBlade.
Allows for change of NFS export rules and enabling/disabled of snapshotting capability.
New in version 2019.2.0.
name of filesystem
NFS export rules for filesystem Refer to Pure Storage documentation for formatting rules.
(Optional) Enable/Disable snapshots on the filesystem. Default is False
CLI Example:
salt '*' purefb.fs_nfs_update foo rules='10.234.112.23(ro), 10.234.112.24(rw)' snapshot=True
Create a filesystem snapshot on a Pure Storage FlashBlade.
Will return False if filesystem selected to snap does not exist.
New in version 2019.2.0.
name of filesystem to snapshot
if specificed forces snapshot name suffix. If not specified defaults to timestamp.
CLI Example:
salt '*' purefb.snap_create foo
salt '*' purefb.snap_create foo suffix=bar
Delete a filesystem snapshot on a Pure Storage FlashBlade.
Will return False if selected snapshot does not exist.
New in version 2019.2.0.
name of filesystem
name of snapshot
Eradicate snapshot after deletion if True. Default is False
CLI Example:
salt '*' purefb.snap_delete foo suffix=snap eradicate=True
Eradicate a deleted filesystem snapshot on a Pure Storage FlashBlade.
Will return False if snapshot is not in a deleted state.
New in version 2019.2.0.
name of filesystem
name of snapshot
CLI Example:
salt '*' purefb.snap_eradicate foo suffix=snap