mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 22:30:22 -07:00
Fix race condifiton where multiple hosts can try and create or delete (#39698)
the same volume, snapshot or hostgroup,
This commit is contained in:
parent
3832d04611
commit
8df02ac37e
3 changed files with 52 additions and 21 deletions
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# (c) 2017, Simon Dodsley (simon@purestorage.com)
|
# (c) 2018, Simon Dodsley (simon@purestorage.com)
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# 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
|
from __future__ import absolute_import, division, print_function
|
||||||
|
@ -126,7 +126,7 @@ def make_hostgroup(module, array):
|
||||||
try:
|
try:
|
||||||
array.create_hgroup(module.params['hostgroup'])
|
array.create_hgroup(module.params['hostgroup'])
|
||||||
except:
|
except:
|
||||||
module.fail_json(msg='Failed to create hostgroup {0}'.format(module.params['hostgroup']))
|
changed = False
|
||||||
if module.params['host']:
|
if module.params['host']:
|
||||||
array.set_hgroup(module.params['hostgroup'], hostlist=module.params['host'])
|
array.set_hgroup(module.params['hostgroup'], hostlist=module.params['host'])
|
||||||
if module.params['volume']:
|
if module.params['volume']:
|
||||||
|
@ -188,14 +188,24 @@ def update_hostgroup(module, array):
|
||||||
|
|
||||||
def delete_hostgroup(module, array):
|
def delete_hostgroup(module, array):
|
||||||
changed = True
|
changed = True
|
||||||
for vol in array.list_hgroup_connections(module.params['hostgroup']):
|
try:
|
||||||
|
vols = array.list_hgroup_connections(module.params['hostgroup'])
|
||||||
|
for vol in vols:
|
||||||
|
try:
|
||||||
array.disconnect_hgroup(module.params['hostgroup'], vol["vol"])
|
array.disconnect_hgroup(module.params['hostgroup'], vol["vol"])
|
||||||
|
except:
|
||||||
|
changed = False
|
||||||
host = array.get_hgroup(module.params['hostgroup'])
|
host = array.get_hgroup(module.params['hostgroup'])
|
||||||
|
try:
|
||||||
array.set_hgroup(module.params['hostgroup'], remhostlist=host['hosts'])
|
array.set_hgroup(module.params['hostgroup'], remhostlist=host['hosts'])
|
||||||
try:
|
try:
|
||||||
array.delete_hgroup(module.params['hostgroup'])
|
array.delete_hgroup(module.params['hostgroup'])
|
||||||
except:
|
except:
|
||||||
module.fail_json(msg='Failed to delete hostgroup {0}'.format(module.params['hostgroup']))
|
changed = False
|
||||||
|
except:
|
||||||
|
changed = False
|
||||||
|
except:
|
||||||
|
changed = False
|
||||||
module.exit_json(changed=changed)
|
module.exit_json(changed=changed)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -132,9 +132,13 @@ def get_snapshot(module, array):
|
||||||
|
|
||||||
def create_snapshot(module, array):
|
def create_snapshot(module, array):
|
||||||
"""Create Snapshot"""
|
"""Create Snapshot"""
|
||||||
|
changed = True
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
|
try:
|
||||||
array.create_snapshot(module.params['name'], suffix=module.params['suffix'])
|
array.create_snapshot(module.params['name'], suffix=module.params['suffix'])
|
||||||
module.exit_json(changed=True)
|
except:
|
||||||
|
changed = False
|
||||||
|
module.exit_json(changed=changed)
|
||||||
|
|
||||||
|
|
||||||
def create_from_snapshot(module, array):
|
def create_from_snapshot(module, array):
|
||||||
|
@ -165,12 +169,19 @@ def update_snapshot(module, array):
|
||||||
|
|
||||||
def delete_snapshot(module, array):
|
def delete_snapshot(module, array):
|
||||||
""" Delete Snapshot"""
|
""" Delete Snapshot"""
|
||||||
|
changed = True
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
snapname = module.params['name'] + "." + module.params['suffix']
|
snapname = module.params['name'] + "." + module.params['suffix']
|
||||||
|
try:
|
||||||
array.destroy_volume(snapname)
|
array.destroy_volume(snapname)
|
||||||
if module.params['eradicate']:
|
if module.params['eradicate']:
|
||||||
|
try:
|
||||||
array.eradicate_volume(snapname)
|
array.eradicate_volume(snapname)
|
||||||
module.exit_json(changed=True)
|
except:
|
||||||
|
changed = False
|
||||||
|
except:
|
||||||
|
changed = False
|
||||||
|
module.exit_json(changed=changed)
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
# (c) 2017, Simon Dodsley (simon@purestorage.com)
|
# (c) 2018, Simon Dodsley (simon@purestorage.com)
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# 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
|
from __future__ import absolute_import, division, print_function
|
||||||
|
@ -149,10 +149,13 @@ def get_target(module, array):
|
||||||
def create_volume(module, array):
|
def create_volume(module, array):
|
||||||
"""Create Volume"""
|
"""Create Volume"""
|
||||||
size = module.params['size']
|
size = module.params['size']
|
||||||
|
changed = True
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
|
try:
|
||||||
array.create_volume(module.params['name'], size)
|
array.create_volume(module.params['name'], size)
|
||||||
module.exit_json(changed=True)
|
except:
|
||||||
|
changed = False
|
||||||
|
module.exit_json(changed=changed)
|
||||||
|
|
||||||
|
|
||||||
def copy_from_volume(module, array):
|
def copy_from_volume(module, array):
|
||||||
|
@ -190,10 +193,17 @@ def update_volume(module, array):
|
||||||
|
|
||||||
def delete_volume(module, array):
|
def delete_volume(module, array):
|
||||||
""" Delete Volume"""
|
""" Delete Volume"""
|
||||||
|
changed = True
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
|
try:
|
||||||
array.destroy_volume(module.params['name'])
|
array.destroy_volume(module.params['name'])
|
||||||
if module.params['eradicate']:
|
if module.params['eradicate']:
|
||||||
|
try:
|
||||||
array.eradicate_volume(module.params['name'])
|
array.eradicate_volume(module.params['name'])
|
||||||
|
except:
|
||||||
|
changed = False
|
||||||
|
except:
|
||||||
|
changed = False
|
||||||
module.exit_json(changed=True)
|
module.exit_json(changed=True)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue