mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Added salt.modules.vsphere.add_capacity_to_diskgroup
This commit is contained in:
parent
7532c28690
commit
41d3846c11
1 changed files with 64 additions and 0 deletions
|
@ -6147,6 +6147,70 @@ def create_diskgroup(cache_disk_id, capacity_disk_ids, safety_checks=True,
|
|||
return True
|
||||
|
||||
|
||||
@depends(HAS_PYVMOMI)
|
||||
@depends(HAS_JSONSCHEMA)
|
||||
@supports_proxies('esxi')
|
||||
@gets_service_instance_via_proxy
|
||||
def add_capacity_to_diskgroup(cache_disk_id, capacity_disk_ids,
|
||||
safety_checks=True, service_instance=None):
|
||||
'''
|
||||
Adds capacity disks to the disk group with the specified cache disk.
|
||||
|
||||
cache_disk_id
|
||||
The canonical name of the cache disk.
|
||||
|
||||
capacity_disk_ids
|
||||
A list containing canonical names of the capacity disks to add.
|
||||
|
||||
safety_checks
|
||||
Specify whether to perform safety check or to skip the checks and try
|
||||
performing the required task. Default value is True.
|
||||
|
||||
service_instance
|
||||
Service instance (vim.ServiceInstance) of the vCenter/ESXi host.
|
||||
Default is None.
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
salt '*' vsphere.add_capacity_to_diskgroup
|
||||
cache_disk_id='naa.000000000000001'
|
||||
capacity_disk_ids='[naa.000000000000002, naa.000000000000003]'
|
||||
'''
|
||||
log.trace('Validating diskgroup input')
|
||||
schema = DiskGroupsDiskIdSchema.serialize()
|
||||
try:
|
||||
jsonschema.validate(
|
||||
{'diskgroups': [{'cache_id': cache_disk_id,
|
||||
'capacity_ids': capacity_disk_ids}]},
|
||||
schema)
|
||||
except jsonschema.exceptions.ValidationError as exc:
|
||||
raise ArgumentValueError(exc)
|
||||
host_ref = _get_proxy_target(service_instance)
|
||||
hostname = __proxy__['esxi.get_details']()['esxi_host']
|
||||
disks = salt.utils.vmware.get_disks(host_ref, disk_ids=capacity_disk_ids)
|
||||
if safety_checks:
|
||||
for id in capacity_disk_ids:
|
||||
if not [d for d in disks if d.canonicalName == id]:
|
||||
raise VMwareObjectRetrievalError(
|
||||
'No disk with id \'{0}\' was found in ESXi host \'{1}\''
|
||||
''.format(id, hostname))
|
||||
diskgroups = \
|
||||
salt.utils.vmware.get_diskgroups(
|
||||
host_ref, cache_disk_ids=[cache_disk_id])
|
||||
if not diskgroups:
|
||||
raise VMwareObjectRetrievalError(
|
||||
'No diskgroup with cache disk id \'{0}\' was found in ESXi '
|
||||
'host \'{1}\''.format(cache_disk_id, esxi_host))
|
||||
vsan_disk_mgmt_system = \
|
||||
salt.utils.vsan.get_vsan_disk_management_system(service_instance)
|
||||
salt.utils.vsan.add_capacity_to_diskgroup(service_instance,
|
||||
vsan_disk_mgmt_system,
|
||||
host_ref,
|
||||
disk_groups[0],
|
||||
disks)
|
||||
return True
|
||||
|
||||
|
||||
def _check_hosts(service_instance, host, host_names):
|
||||
'''
|
||||
Helper function that checks to see if the host provided is a vCenter Server or
|
||||
|
|
Loading…
Add table
Reference in a new issue