mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-27 04:41:26 -07:00
VMware: refactor vmware_datastore_facts (#36423)
This fix adds datastore cluster details about datastore in returning facts. Updated documentation and tests. Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
435649274b
commit
d94a1ef4cc
2 changed files with 68 additions and 56 deletions
|
@ -1,45 +1,52 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
#
|
# Copyright (c) 2017, Tim Rightnour <thegarbledone@gmail.com>
|
||||||
# Copyright (c) 2017 Tim Rightnour <thegarbledone@gmail.com>
|
# Copyright (c) 2018, Ansible Project
|
||||||
# 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
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
ANSIBLE_METADATA = {
|
||||||
'status': ['preview'],
|
'metadata_version': '1.1',
|
||||||
'supported_by': 'community'}
|
'status': ['preview'],
|
||||||
|
'supported_by': 'community'
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: vmware_datastore_facts
|
module: vmware_datastore_facts
|
||||||
short_description: Gather facts about datastores
|
short_description: Gather facts about datastores available in given vCenter
|
||||||
description:
|
description:
|
||||||
- Gather facts about datastores in VMWare
|
- This module can be used to gather facts about datastores in VMWare infrastructure.
|
||||||
|
- All values and VMware object names are case sensitive.
|
||||||
version_added: 2.5
|
version_added: 2.5
|
||||||
author:
|
author:
|
||||||
- Tim Rightnour (@garbled1)
|
- Tim Rightnour (@garbled1)
|
||||||
notes:
|
notes:
|
||||||
- Tested on vSphere 5.5
|
- Tested on vSphere 5.5, 6.0 and 6.5
|
||||||
requirements:
|
requirements:
|
||||||
- "python >= 2.6"
|
- "python >= 2.6"
|
||||||
- PyVmomi
|
- PyVmomi
|
||||||
options:
|
options:
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
- Name of a datastore to match
|
- Name of the datastore to match.
|
||||||
|
- If set, facts of specific datastores are returned.
|
||||||
|
required: False
|
||||||
datacenter:
|
datacenter:
|
||||||
description:
|
description:
|
||||||
- Datacenter to search for datastores
|
- Datacenter to search for datastores.
|
||||||
- This is required if cluster is not supplied
|
- This parameter is required, if C(cluster) is not supplied.
|
||||||
|
required: False
|
||||||
cluster:
|
cluster:
|
||||||
description:
|
description:
|
||||||
- Cluster to search for datastores
|
- Cluster to search for datastores.
|
||||||
- This is required if datacenter is not supplied
|
- If set, facts of datastores belonging this clusters will be returned.
|
||||||
required: False
|
- This parameter is required, if C(datacenter) is not supplied.
|
||||||
|
required: False
|
||||||
extends_documentation_fragment: vmware.documentation
|
extends_documentation_fragment: vmware.documentation
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -53,26 +60,48 @@ EXAMPLES = '''
|
||||||
validate_certs: no
|
validate_certs: no
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
register: facts
|
register: facts
|
||||||
|
|
||||||
|
- name: Gather facts from datacenter about specific datastore
|
||||||
|
vmware_datastore_facts:
|
||||||
|
hostname: 192.168.1.209
|
||||||
|
username: administrator@vsphere.local
|
||||||
|
password: vmware
|
||||||
|
datacenter: DC0
|
||||||
|
name: datastore1
|
||||||
|
validate_certs: no
|
||||||
|
delegate_to: localhost
|
||||||
|
register: facts
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = """
|
RETURN = """
|
||||||
instance:
|
datastores:
|
||||||
description: metadata about the available datastores
|
description: metadata about the available datastores
|
||||||
returned: always
|
returned: always
|
||||||
type: dict
|
type: list
|
||||||
sample: None
|
sample: [
|
||||||
|
{
|
||||||
|
"accessible": false,
|
||||||
|
"capacity": 42681237504,
|
||||||
|
"datastore_cluster": "datacluster0",
|
||||||
|
"freeSpace": 39638269952,
|
||||||
|
"maintenanceMode": "normal",
|
||||||
|
"multipleHostAccess": false,
|
||||||
|
"name": "datastore2",
|
||||||
|
"provisioned": 12289211488,
|
||||||
|
"type": "VMFS",
|
||||||
|
"uncommitted": 9246243936,
|
||||||
|
"url": "ds:///vmfs/volumes/5a69b18a-c03cd88c-36ae-5254001249ce/"
|
||||||
|
},
|
||||||
|
]
|
||||||
"""
|
"""
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import pyVmomi
|
|
||||||
from pyVmomi import vim
|
from pyVmomi import vim
|
||||||
except ImportError:
|
except ImportError:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils._text import to_text
|
from ansible.module_utils.vmware import (PyVmomi, vmware_argument_spec, get_all_objs,
|
||||||
from ansible.module_utils.vmware import (connect_to_api, vmware_argument_spec,
|
|
||||||
get_all_objs, HAS_PYVMOMI, find_obj,
|
|
||||||
find_cluster_by_name, get_parent_datacenter)
|
find_cluster_by_name, get_parent_datacenter)
|
||||||
|
|
||||||
|
|
||||||
|
@ -101,14 +130,9 @@ class PyVmomiCache(object):
|
||||||
return objects
|
return objects
|
||||||
|
|
||||||
|
|
||||||
class PyVmomiHelper(object):
|
class PyVmomiHelper(PyVmomi):
|
||||||
def __init__(self, module):
|
def __init__(self, module):
|
||||||
if not HAS_PYVMOMI:
|
super(PyVmomiHelper, self).__init__(module)
|
||||||
module.fail_json(msg='pyvmomi module required')
|
|
||||||
|
|
||||||
self.module = module
|
|
||||||
self.params = module.params
|
|
||||||
self.content = connect_to_api(self.module)
|
|
||||||
self.cache = PyVmomiCache(self.content, dc_name=self.params['datacenter'])
|
self.cache = PyVmomiCache(self.content, dc_name=self.params['datacenter'])
|
||||||
|
|
||||||
def lookup_datastore(self):
|
def lookup_datastore(self):
|
||||||
|
@ -162,6 +186,10 @@ def main():
|
||||||
dds['url'] = summary.url
|
dds['url'] = summary.url
|
||||||
# Calculated values
|
# Calculated values
|
||||||
dds['provisioned'] = summary.capacity - summary.freeSpace + summary.uncommitted
|
dds['provisioned'] = summary.capacity - summary.freeSpace + summary.uncommitted
|
||||||
|
dds['datastore_cluster'] = 'N/A'
|
||||||
|
if isinstance(ds.parent, vim.StoragePod):
|
||||||
|
dds['datastore_cluster'] = ds.parent.name
|
||||||
|
|
||||||
if module.params['name']:
|
if module.params['name']:
|
||||||
if dds['name'] == module.params['name']:
|
if dds['name'] == module.params['name']:
|
||||||
datastores.extend([dds])
|
datastores.extend([dds])
|
||||||
|
@ -172,10 +200,7 @@ def main():
|
||||||
|
|
||||||
# found a datastore
|
# found a datastore
|
||||||
if datastores:
|
if datastores:
|
||||||
try:
|
module.exit_json(**result)
|
||||||
module.exit_json(**result)
|
|
||||||
except Exception as exc:
|
|
||||||
module.fail_json(msg="Fact gather failed with exception %s" % to_text(exc))
|
|
||||||
else:
|
else:
|
||||||
msg = "Unable to gather datastore facts"
|
msg = "Unable to gather datastore facts"
|
||||||
if module.params['name']:
|
if module.params['name']:
|
||||||
|
|
|
@ -1,21 +1,8 @@
|
||||||
# Test code for the vmware_datastore_facts module.
|
# Test code for the vmware_datastore_facts module.
|
||||||
# (c) 2017, Tim Rightnour <thegarbledone@gmail.com>
|
# Copyright (c) 2017, Tim Rightnour <thegarbledone@gmail.com>
|
||||||
|
# Copyright (c) 2018, Ansible Project
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
# This file is part of Ansible
|
|
||||||
#
|
|
||||||
# Ansible is free software: you can redistribute it and/or modify
|
|
||||||
# it under the terms of the GNU General Public License as published by
|
|
||||||
# the Free Software Foundation, either version 3 of the License, or
|
|
||||||
# (at your option) any later version.
|
|
||||||
#
|
|
||||||
# Ansible is distributed in the hope that it will be useful,
|
|
||||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
||||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
||||||
# GNU General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
||||||
#
|
|
||||||
- name: make sure pyvmomi is installed
|
- name: make sure pyvmomi is installed
|
||||||
pip:
|
pip:
|
||||||
name: pyvmomi
|
name: pyvmomi
|
||||||
|
@ -36,11 +23,11 @@
|
||||||
|
|
||||||
- name: kill vcsim
|
- name: kill vcsim
|
||||||
uri:
|
uri:
|
||||||
url: "{{ 'http://' + vcsim + ':5000/killall' }}"
|
url: http://{{ vcsim }}:5000/killall
|
||||||
|
|
||||||
- name: start vcsim
|
- name: start vcsim
|
||||||
uri:
|
uri:
|
||||||
url: "{{ 'http://' + vcsim + ':5000/spawn?ds=2&datacenter=1&cluster=1&folder=0' }}"
|
url: http://{{ vcsim }}:5000/spawn?ds=2&datacenter=1&cluster=1&folder=0
|
||||||
register: vcsim_instance
|
register: vcsim_instance
|
||||||
|
|
||||||
- name: Wait for vcsim server to come up online
|
- name: Wait for vcsim server to come up online
|
||||||
|
@ -51,7 +38,7 @@
|
||||||
|
|
||||||
- name: get a list of Clusters from vcsim
|
- name: get a list of Clusters from vcsim
|
||||||
uri:
|
uri:
|
||||||
url: "{{ 'http://' + vcsim + ':5000/govc_find?filter=CCR' }}"
|
url: http://{{ vcsim }}:5000/govc_find?filter=CCR
|
||||||
register: clusters
|
register: clusters
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
@ -59,7 +46,7 @@
|
||||||
|
|
||||||
- name: get a list of Datacenters from vcsim
|
- name: get a list of Datacenters from vcsim
|
||||||
uri:
|
uri:
|
||||||
url: "{{ 'http://' + vcsim + ':5000/govc_find?filter=DC' }}"
|
url: http://{{ vcsim }}:5000/govc_find?filter=DC
|
||||||
register: datacenters
|
register: datacenters
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
@ -67,7 +54,7 @@
|
||||||
|
|
||||||
- name: get a list of Datastores from vcsim
|
- name: get a list of Datastores from vcsim
|
||||||
uri:
|
uri:
|
||||||
url: "{{ 'http://' + vcsim + ':5000/govc_find?filter=D' }}"
|
url: http://{{ vcsim }}:5000/govc_find?filter=D
|
||||||
register: datastores
|
register: datastores
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue