community.general.gluster_peer – Attach/Detach peers to/from the cluster¶
Note
This plugin is part of the community.general collection (version 2.5.1).
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.gluster_peer
.
DEPRECATED¶
- Removed in
version 3.0.0
- Why
The gluster modules have migrated to the gluster.gluster collection.
- Alternative
Use gluster.gluster.gluster_peer instead.
Synopsis¶
Create or diminish a GlusterFS trusted storage pool. A set of nodes can be added into an existing trusted storage pool or a new storage pool can be formed. Or, nodes can be removed from an existing trusted storage pool.
Requirements¶
The below requirements are needed on the host that executes this module.
GlusterFS > 3.2
Parameters¶
Examples¶
- name: Create a trusted storage pool
community.general.gluster_peer:
state: present
nodes:
- 10.0.1.5
- 10.0.1.10
- name: Delete a node from the trusted storage pool
community.general.gluster_peer:
state: absent
nodes:
- 10.0.1.10
- name: Delete a node from the trusted storage pool by force
community.general.gluster_peer:
state: absent
nodes:
- 10.0.0.1
force: true
Status¶
This module will be removed in version 3.0.0. [deprecated]
For more information see DEPRECATED.
Authors¶
Sachidananda Urs (@sac)