Deprecated

Removed in 3.0.0

i

Reason:The gluster modules have migrated to the gluster.gluster collection. | Alternative:Use M(gluster.gluster.gluster_peer) instead.

community.general.gluster_peer (2.5.9) — module

Attach/Detach peers to/from the cluster

Authors: Sachidananda Urs (@sac)

Install collection

Install with ansible-galaxy collection install community.general:==2.5.9


Add to requirements.yml

  collections:
    - name: community.general
      version: 2.5.9

Description

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

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create a trusted storage pool
  community.general.gluster_peer:
        state: present
        nodes:
             - 10.0.1.5
             - 10.0.1.10
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete a node from the trusted storage pool
  community.general.gluster_peer:
         state: absent
         nodes:
              - 10.0.1.10
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete a node from the trusted storage pool by force
  community.general.gluster_peer:
         state: absent
         nodes:
              - 10.0.0.1
         force: true

Inputs

    
force:
    default: false
    description:
    - Applicable only while removing the nodes from the pool. gluster will refuse to detach
      a node from the pool if any one of the node is down, in such cases force can be
      used.
    type: bool

nodes:
    description:
    - List of nodes that have to be probed into the pool.
    required: true
    type: list

state:
    choices:
    - present
    - absent
    default: present
    description:
    - Determines whether the nodes should be attached to the pool or removed from the
      pool. If the state is present, nodes will be attached to the pool. If state is absent,
      nodes will be detached from the pool.
    type: str