community.general.ibm_sa_pool (8.5.0) — module

Handles pools on IBM Spectrum Accelerate Family storage systems

Authors: Tzur Eliyahu (@tzure)

Install collection

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


Add to requirements.yml

  collections:
    - name: community.general
      version: 8.5.0

Description

This module creates or deletes pools to be used on IBM Spectrum Accelerate Family storage systems


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Create new pool.
  community.general.ibm_sa_pool:
    name: pool_name
    size: 300
    state: present
    username: admin
    password: secret
    endpoints: hostdev-system
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Delete pool.
  community.general.ibm_sa_pool:
    name: pool_name
    state: absent
    username: admin
    password: secret
    endpoints: hostdev-system

Inputs

    
pool:
    description:
    - Pool name.
    required: true
    type: str

size:
    description:
    - Pool size in GB
    required: false
    type: str

state:
    choices:
    - present
    - absent
    default: present
    description:
    - Pool state.
    type: str

domain:
    description:
    - Adds the pool to the specified domain.
    required: false
    type: str

password:
    description:
    - Password for username on the spectrum accelerate storage system.
    required: true
    type: str

username:
    description:
    - Management user on the spectrum accelerate storage system.
    required: true
    type: str

endpoints:
    description:
    - The hostname or management IP of Spectrum Accelerate storage system.
    required: true
    type: str

perf_class:
    description:
    - Assigns a perf_class to the pool.
    required: false
    type: str

snapshot_size:
    description:
    - Pool snapshot size in GB
    required: false
    type: str