Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# (c) 2016, NetApp, Inc
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2017-03-14 16:07:22 +00:00
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'}
|
|
|
|
|
2016-12-06 10:35:25 +00:00
|
|
|
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
DOCUMENTATION = """
|
|
|
|
---
|
|
|
|
module: netapp_e_amg
|
|
|
|
short_description: Create, Remove, and Update Asynchronous Mirror Groups
|
|
|
|
description:
|
|
|
|
- Allows for the creation, removal and updating of Asynchronous Mirror Groups for NetApp E-series storage arrays
|
|
|
|
version_added: '2.2'
|
|
|
|
author: Kevin Hulquest (@hulquest)
|
2017-02-14 20:53:18 +00:00
|
|
|
extends_documentation_fragment:
|
|
|
|
- netapp.eseries
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
options:
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- The name of the async array you wish to target, or create.
|
|
|
|
- If C(state) is present and the name isn't found, it will attempt to create.
|
|
|
|
required: yes
|
|
|
|
secondaryArrayId:
|
|
|
|
description:
|
|
|
|
- The ID of the secondary array to be used in mirroing process
|
|
|
|
required: yes
|
|
|
|
syncIntervalMinutes:
|
|
|
|
description:
|
|
|
|
- The synchronization interval in minutes
|
|
|
|
required: no
|
|
|
|
default: 10
|
|
|
|
manualSync:
|
|
|
|
description:
|
|
|
|
- Setting this to true will cause other synchronization values to be ignored
|
|
|
|
required: no
|
|
|
|
default: no
|
|
|
|
recoveryWarnThresholdMinutes:
|
|
|
|
description:
|
|
|
|
- Recovery point warning threshold (minutes). The user will be warned when the age of the last good failures point exceeds this value
|
|
|
|
required: no
|
|
|
|
default: 20
|
|
|
|
repoUtilizationWarnThreshold:
|
|
|
|
description:
|
|
|
|
- Recovery point warning threshold
|
|
|
|
required: no
|
|
|
|
default: 80
|
|
|
|
interfaceType:
|
|
|
|
description:
|
|
|
|
- The intended protocol to use if both Fibre and iSCSI are available.
|
|
|
|
choices:
|
|
|
|
- iscsi
|
|
|
|
- fibre
|
|
|
|
required: no
|
|
|
|
default: null
|
|
|
|
syncWarnThresholdMinutes:
|
|
|
|
description:
|
|
|
|
- The threshold (in minutes) for notifying the user that periodic synchronization has taken too long to complete.
|
|
|
|
required: no
|
|
|
|
default: 10
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- A C(state) of present will either create or update the async mirror group.
|
|
|
|
- A C(state) of absent will remove the async mirror group.
|
|
|
|
required: yes
|
|
|
|
"""
|
|
|
|
|
|
|
|
EXAMPLES = """
|
|
|
|
- name: AMG removal
|
|
|
|
na_eseries_amg:
|
|
|
|
state: absent
|
|
|
|
ssid: "{{ ssid }}"
|
|
|
|
secondaryArrayId: "{{amg_secondaryArrayId}}"
|
|
|
|
api_url: "{{ netapp_api_url }}"
|
|
|
|
api_username: "{{ netapp_api_username }}"
|
|
|
|
api_password: "{{ netapp_api_password }}"
|
|
|
|
new_name: "{{amg_array_name}}"
|
|
|
|
name: "{{amg_name}}"
|
|
|
|
when: amg_create
|
|
|
|
|
|
|
|
- name: AMG create
|
|
|
|
netapp_e_amg:
|
|
|
|
state: present
|
|
|
|
ssid: "{{ ssid }}"
|
|
|
|
secondaryArrayId: "{{amg_secondaryArrayId}}"
|
|
|
|
api_url: "{{ netapp_api_url }}"
|
|
|
|
api_username: "{{ netapp_api_username }}"
|
|
|
|
api_password: "{{ netapp_api_password }}"
|
|
|
|
new_name: "{{amg_array_name}}"
|
|
|
|
name: "{{amg_name}}"
|
|
|
|
when: amg_create
|
|
|
|
"""
|
|
|
|
|
|
|
|
RETURN = """
|
|
|
|
msg:
|
|
|
|
description: Successful creation
|
|
|
|
returned: success
|
|
|
|
type: string
|
|
|
|
sample: '{"changed": true, "connectionType": "fc", "groupRef": "3700000060080E5000299C24000006E857AC7EEC", "groupState": "optimal", "id": "3700000060080E5000299C24000006E857AC7EEC", "label": "amg_made_by_ansible", "localRole": "primary", "mirrorChannelRemoteTarget": "9000000060080E5000299C24005B06E557AC7EEC", "orphanGroup": false, "recoveryPointAgeAlertThresholdMinutes": 20, "remoteRole": "secondary", "remoteTarget": {"nodeName": {"ioInterfaceType": "fc", "iscsiNodeName": null, "remoteNodeWWN": "20040080E5299F1C"}, "remoteRef": "9000000060080E5000299C24005B06E557AC7EEC", "scsiinitiatorTargetBaseProperties": {"ioInterfaceType": "fc", "iscsiinitiatorTargetBaseParameters": null}}, "remoteTargetId": "ansible2", "remoteTargetName": "Ansible2", "remoteTargetWwn": "60080E5000299F880000000056A25D56", "repositoryUtilizationWarnThreshold": 80, "roleChangeProgress": "none", "syncActivity": "idle", "syncCompletionTimeAlertThresholdMinutes": 10, "syncIntervalMinutes": 10, "worldWideName": "60080E5000299C24000006E857AC7EEC"}'
|
2017-03-23 01:50:28 +00:00
|
|
|
""" # NOQA
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
|
|
|
|
import json
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
import traceback
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils._text import to_native
|
2017-02-14 20:53:18 +00:00
|
|
|
from ansible.module_utils.netapp import request, eseries_host_argument_spec
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
HEADERS = {
|
|
|
|
"Content-Type": "application/json",
|
|
|
|
"Accept": "application/json",
|
|
|
|
}
|
|
|
|
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
def has_match(module, ssid, api_url, api_pwd, api_usr, body):
|
|
|
|
compare_keys = ['syncIntervalMinutes', 'syncWarnThresholdMinutes',
|
|
|
|
'recoveryWarnThresholdMinutes', 'repoUtilizationWarnThreshold']
|
|
|
|
desired_state = dict((x, (body.get(x))) for x in compare_keys)
|
|
|
|
label_exists = False
|
|
|
|
matches_spec = False
|
|
|
|
current_state = None
|
|
|
|
async_id = None
|
|
|
|
api_data = None
|
|
|
|
desired_name = body.get('name')
|
|
|
|
endpoint = 'storage-systems/%s/async-mirrors' % ssid
|
|
|
|
url = api_url + endpoint
|
|
|
|
try:
|
|
|
|
rc, data = request(url, url_username=api_usr, url_password=api_pwd, headers=HEADERS)
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
except Exception as e:
|
|
|
|
module.exit_json(msg="Error finding a match. Message: %s" % to_native(e), exception=traceback.format_exc())
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
|
|
|
|
for async_group in data:
|
|
|
|
if async_group['label'] == desired_name:
|
|
|
|
label_exists = True
|
|
|
|
api_data = async_group
|
|
|
|
async_id = async_group['groupRef']
|
|
|
|
current_state = dict(
|
|
|
|
syncIntervalMinutes=async_group['syncIntervalMinutes'],
|
|
|
|
syncWarnThresholdMinutes=async_group['syncCompletionTimeAlertThresholdMinutes'],
|
|
|
|
recoveryWarnThresholdMinutes=async_group['recoveryPointAgeAlertThresholdMinutes'],
|
|
|
|
repoUtilizationWarnThreshold=async_group['repositoryUtilizationWarnThreshold'],
|
|
|
|
)
|
|
|
|
|
|
|
|
if current_state == desired_state:
|
|
|
|
matches_spec = True
|
|
|
|
|
|
|
|
return label_exists, matches_spec, api_data, async_id
|
|
|
|
|
|
|
|
|
|
|
|
def create_async(module, ssid, api_url, api_pwd, api_usr, body):
|
|
|
|
endpoint = 'storage-systems/%s/async-mirrors' % ssid
|
|
|
|
url = api_url + endpoint
|
|
|
|
post_data = json.dumps(body)
|
|
|
|
try:
|
|
|
|
rc, data = request(url, data=post_data, method='POST', url_username=api_usr, url_password=api_pwd,
|
|
|
|
headers=HEADERS)
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
except Exception as e:
|
2017-12-07 16:27:06 +00:00
|
|
|
module.exit_json(msg="Exception while creating aysnc mirror group. Message: %s" % to_native(e),
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
exception=traceback.format_exc())
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|
|
def update_async(module, ssid, api_url, pwd, user, body, new_name, async_id):
|
|
|
|
endpoint = 'storage-systems/%s/async-mirrors/%s' % (ssid, async_id)
|
|
|
|
url = api_url + endpoint
|
|
|
|
compare_keys = ['syncIntervalMinutes', 'syncWarnThresholdMinutes',
|
|
|
|
'recoveryWarnThresholdMinutes', 'repoUtilizationWarnThreshold']
|
|
|
|
desired_state = dict((x, (body.get(x))) for x in compare_keys)
|
|
|
|
|
|
|
|
if new_name:
|
|
|
|
desired_state['new_name'] = new_name
|
|
|
|
|
|
|
|
post_data = json.dumps(desired_state)
|
|
|
|
|
|
|
|
try:
|
|
|
|
rc, data = request(url, data=post_data, method='POST', headers=HEADERS,
|
|
|
|
url_username=user, url_password=pwd)
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
except Exception as e:
|
|
|
|
module.exit_json(msg="Exception while updating async mirror group. Message: %s" % to_native(e),
|
|
|
|
exception=traceback.format_exc())
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
|
|
|
|
return data
|
|
|
|
|
|
|
|
|
|
|
|
def remove_amg(module, ssid, api_url, pwd, user, async_id):
|
|
|
|
endpoint = 'storage-systems/%s/async-mirrors/%s' % (ssid, async_id)
|
|
|
|
url = api_url + endpoint
|
|
|
|
try:
|
|
|
|
rc, data = request(url, method='DELETE', url_username=user, url_password=pwd,
|
|
|
|
headers=HEADERS)
|
Remove wildcard imports
Made the following changes:
* Removed wildcard imports
* Replaced long form of GPL header with short form
* Removed get_exception usage
* Added from __future__ boilerplate
* Adjust division operator to // where necessary
For the following files:
* web_infrastructure modules
* system modules
* linode, lxc, lxd, atomic, cloudscale, dimensiondata, ovh, packet,
profitbricks, pubnub, smartos, softlayer, univention modules
* compat dirs (disabled as its used intentionally)
2017-07-28 05:55:24 +00:00
|
|
|
except Exception as e:
|
|
|
|
module.exit_json(msg="Exception while removing async mirror group. Message: %s" % to_native(e),
|
|
|
|
exception=traceback.format_exc())
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2017-02-14 20:53:18 +00:00
|
|
|
argument_spec = eseries_host_argument_spec()
|
Add modules for NetApp SANtricity storage platform (#2929)
The modules prefixed with netapp_e* are built to support the
SANtricity storage platform.
The modules provide idempotent provisioning for volume groups, disk
pools, standard volumes, thin volumes, LUN mapping, hosts, host groups
(clusters), volume snapshots, consistency groups, and asynchronous
mirroring.
They require the SANtricity WebServices Proxy.
The WebServices Proxy is free software available at
the NetApp Software Download site:
http://mysupport.netapp.com/NOW/download/software/eseries_webservices/1.40.X000.0009/
Starting with the E2800 platform (11.30 OS), the modules will work
directly with the storage array. Starting with this platform, REST API
requests are handled directly on the box. This array can still be
managed by proxy for large scale deployments.
2016-09-15 18:52:55 +00:00
|
|
|
argument_spec.update(dict(
|
|
|
|
name=dict(required=True, type='str'),
|
|
|
|
new_name=dict(required=False, type='str'),
|
|
|
|
secondaryArrayId=dict(required=True, type='str'),
|
|
|
|
syncIntervalMinutes=dict(required=False, default=10, type='int'),
|
|
|
|
manualSync=dict(required=False, default=False, type='bool'),
|
|
|
|
recoveryWarnThresholdMinutes=dict(required=False, default=20, type='int'),
|
|
|
|
repoUtilizationWarnThreshold=dict(required=False, default=80, type='int'),
|
|
|
|
interfaceType=dict(required=False, choices=['fibre', 'iscsi'], type='str'),
|
|
|
|
state=dict(required=True, choices=['present', 'absent']),
|
|
|
|
syncWarnThresholdMinutes=dict(required=False, default=10, type='int')
|
|
|
|
))
|
|
|
|
|
|
|
|
module = AnsibleModule(argument_spec=argument_spec)
|
|
|
|
|
|
|
|
p = module.params
|
|
|
|
|
|
|
|
ssid = p.pop('ssid')
|
|
|
|
api_url = p.pop('api_url')
|
|
|
|
user = p.pop('api_username')
|
|
|
|
pwd = p.pop('api_password')
|
|
|
|
new_name = p.pop('new_name')
|
|
|
|
state = p.pop('state')
|
|
|
|
|
|
|
|
if not api_url.endswith('/'):
|
|
|
|
api_url += '/'
|
|
|
|
|
|
|
|
name_exists, spec_matches, api_data, async_id = has_match(module, ssid, api_url, pwd, user, p)
|
|
|
|
|
|
|
|
if state == 'present':
|
|
|
|
if name_exists and spec_matches:
|
|
|
|
module.exit_json(changed=False, msg="Desired state met", **api_data)
|
|
|
|
elif name_exists and not spec_matches:
|
|
|
|
results = update_async(module, ssid, api_url, pwd, user,
|
|
|
|
p, new_name, async_id)
|
|
|
|
module.exit_json(changed=True,
|
|
|
|
msg="Async mirror group updated", async_id=async_id,
|
|
|
|
**results)
|
|
|
|
elif not name_exists:
|
|
|
|
results = create_async(module, ssid, api_url, user, pwd, p)
|
|
|
|
module.exit_json(changed=True, **results)
|
|
|
|
|
|
|
|
elif state == 'absent':
|
|
|
|
if name_exists:
|
|
|
|
remove_amg(module, ssid, api_url, pwd, user, async_id)
|
|
|
|
module.exit_json(changed=True, msg="Async mirror group removed.",
|
|
|
|
async_id=async_id)
|
|
|
|
else:
|
|
|
|
module.exit_json(changed=False,
|
|
|
|
msg="Async Mirror group: %s already absent" % p['name'])
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|