Skip to content

Huang-Jack/ansible-powerstore

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

Ansible Modules for Dell EMC PowerStore

The Ansible Modules for Dell EMC PowerStore allow Data Center and IT administrators to use RedHat Ansible to automate and orchestrate the configuartion and management of Dell EMC PowerStore arrays.

The capabilities of the Ansible modules are managing volumes, volume groups, hosts, host groups, snapshots, snapshot rules, protection policies, file systems, nas servers, smb shares, user and tree quotas, file system snapshots and nfs exports; and to gather facts from the array. The options available for each are list, show, create, modify and delete. These tasks can be executed by running simple playbooks written in yaml syntax. The modules are written so that all the operations are idempotent, so making multiple identical requests has the same effect as making a single request.

Support

Ansible modules for PowerStore are supported by Dell EMC and are provided under the terms of the license attached to the source code. Dell EMC does not provide support for any source code modifications. For any Ansible module issues, questions or feedback, join the Dell EMC Automation community.

Supported Platforms

  • Dell EMC PowerStore Arrays version 1.0

Prerequisites

  • Ansible 2.8 or higher
  • Python 2.7 or higher
  • Red Hat Enterprise Linux 7.6, 7.7, 7.8, 8.2
  • Python Library for PowerStore version 1.2

Idempotency

The modules are written in such a way that all requests are idempotent and hence fault-tolerant. It essentially means that the result of a successfully performed request is independent of the number of times it is executed.

List of Ansible Modules for Dell EMC PowerStore

  • Volume module
  • Volume group module
  • Host module
  • Host group module
  • Snapshot module
  • Snapshot rule module
  • Protection policy module
  • Gather facts module
  • File system module
  • NAS server module
  • SMB module
  • Quota module
  • File system snapshot module
  • NFS module

Installation of SDK

  1. Clone the repo using command: git clone https://github.com/dell/python-powerstore
  2. Go to the root directory of setup
  3. Execute the following command:
    pip install .

Installation of Ansible Modules

  • Clone the latest development repository and install the ansible modules.

git clone https://github.com/dell/ansible-powerstore

cd ansible-powerstore/dellemc_ansible

For python 2.7 environment

  • Create folder 'dellemc' at '/usr/lib/python2.7/site-packages/ansible/modules/storage/' if it doesnot exist.
  • Create folder 'dell' at '/usr/lib/python2.7/site-packages/ansible/module_utils/storage' if it doesnot exist.
  • Copy 'utils/dellemc_ansible_powerstore_utils.py' to '/usr/lib/python2.7/site-packages/ansible/module_utils/storage/dell'
  • Copy 'utils/__init__.py' to '/usr/lib/python2.7/site-packages/ansible/module_utils/storage/dell' if it doesnot exist.
  • Copy all module Python files in the 'powerstore/library' folder to /usr/lib/python2.7/site-packages/ansible/modules/storage/dellemc/
  • Copy dellemc_powerstore.py from /doc_fragments folder to /usr/lib/python2.7/site-packages/ansible/plugins/doc_fragments/

For python 3.5 environment

  • Create folder 'dell' at '/usr/lib/python3.5/site-packages/ansible/module_utils/storage' if it doesnot exist.
  • Create folder 'dellemc' at '/usr/lib/python3.5/site-packages/ansible/modules/storage/' if it doesnot exist.
  • Copy 'utils/dellemc_ansible_powerstore_utils.py' to '/usr/lib/python3.5/site-packages/ansible/module_utils/storage/dell'
  • Copy 'utils/__init__.py' to '/usr/lib/python3.5/site-packages/ansible/module_utils/storage/dell' if it doesnot exist.
  • Copy all module Python files in the 'powerstore/library' folder to /usr/lib/python3.5/site-packages/ansible/modules/storage/dellemc/
  • Copy dellemc_powerstore.py from /doc_fragments folder to /usr/lib/python3.5/site-packages/ansible/plugins/doc_fragments/

SSL Certificate Validation

  • Export the SSL certificate from the intended storage array in .crt format.
  • Copy the certificate to this "/usr/local/share/ca-certificates" path of the host.
  • Import the SSL certificate to host using the command "sudo update-ca-certificates".
  • Set the "REQUESTS_CA_BUNDLE" environment variable to the path of the SSL certificate using the command "export REQUESTS_CA_BUNDLE=/usr/local/share/ca-certificates/<<Certificate_Name>>"

Documentation

Check documentation from each module's file in /ansible-powerstore/dellemc_ansible/docs/

Examples

Check examples from each module's file in /ansible-powerstore/dellemc_ansible/powerstore/library/

Results

Each module returns the updated state and details of the entity, For example, if you are using the Volume module, all calls will return the updated details of the volume. Sample result is shown in each module's documentation.

About

Ansible Modules for Dell EMC PowerStore

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%