2017-02-06 16:52:17 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
|
|
# This module is also sponsored by E.T.A.I. (www.etai.fr)
|
2017-07-29 15:05:38 +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-02-06 16:52:17 +00:00
|
|
|
|
2018-10-25 04:15:38 +00:00
|
|
|
ANSIBLE_METADATA = {
|
|
|
|
'metadata_version': '1.1',
|
|
|
|
'status': ['preview'],
|
|
|
|
'supported_by': 'community'
|
|
|
|
}
|
2017-03-14 16:07:22 +00:00
|
|
|
|
2017-02-06 16:52:17 +00:00
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: vmware_guest_facts
|
|
|
|
short_description: Gather facts about a single VM
|
|
|
|
description:
|
2018-10-25 04:15:38 +00:00
|
|
|
- Gather facts about a single VM on a VMware ESX cluster.
|
2017-02-06 16:52:17 +00:00
|
|
|
version_added: 2.3
|
|
|
|
author:
|
|
|
|
- Loic Blot (@nerzhul) <loic.blot@unix-experience.fr>
|
|
|
|
notes:
|
|
|
|
- Tested on vSphere 5.5
|
|
|
|
requirements:
|
|
|
|
- "python >= 2.6"
|
|
|
|
- PyVmomi
|
|
|
|
options:
|
|
|
|
name:
|
2018-10-25 04:15:38 +00:00
|
|
|
description:
|
|
|
|
- Name of the VM to work with
|
|
|
|
- This is required if UUID is not supplied.
|
2017-02-06 16:52:17 +00:00
|
|
|
name_match:
|
2018-10-25 04:15:38 +00:00
|
|
|
description:
|
|
|
|
- If multiple VMs matching the name, use the first or last found
|
|
|
|
default: 'first'
|
|
|
|
choices: ['first', 'last']
|
2017-02-06 16:52:17 +00:00
|
|
|
uuid:
|
2018-10-25 04:15:38 +00:00
|
|
|
description:
|
|
|
|
- UUID of the instance to manage if known, this is VMware's unique identifier.
|
|
|
|
- This is required if name is not supplied.
|
2017-02-06 16:52:17 +00:00
|
|
|
folder:
|
2018-10-25 04:15:38 +00:00
|
|
|
description:
|
|
|
|
- Destination folder, absolute or relative path to find an existing guest.
|
|
|
|
- This is required if name is supplied.
|
|
|
|
- The folder should include the datacenter. ESX's datacenter is ha-datacenter
|
|
|
|
- 'Examples:'
|
|
|
|
- ' folder: /ha-datacenter/vm'
|
|
|
|
- ' folder: ha-datacenter/vm'
|
|
|
|
- ' folder: /datacenter1/vm'
|
|
|
|
- ' folder: datacenter1/vm'
|
|
|
|
- ' folder: /datacenter1/vm/folder1'
|
|
|
|
- ' folder: datacenter1/vm/folder1'
|
|
|
|
- ' folder: /folder1/datacenter1/vm'
|
|
|
|
- ' folder: folder1/datacenter1/vm'
|
|
|
|
- ' folder: /folder1/datacenter1/vm/folder2'
|
|
|
|
- ' folder: vm/folder2'
|
|
|
|
- ' folder: folder2'
|
2017-02-06 16:52:17 +00:00
|
|
|
datacenter:
|
2018-10-25 04:15:38 +00:00
|
|
|
description:
|
|
|
|
- Destination datacenter for the deploy operation
|
|
|
|
required: True
|
|
|
|
tags:
|
|
|
|
description:
|
|
|
|
- Whether to show tags or not.
|
|
|
|
- If set C(True), shows tag facts.
|
|
|
|
- If set C(False), hides tags facts.
|
|
|
|
- vSphere Automation SDK and vCloud Suite SDK is required.
|
|
|
|
default: 'no'
|
|
|
|
type: bool
|
|
|
|
version_added: '2.8'
|
2017-02-06 16:52:17 +00:00
|
|
|
extends_documentation_fragment: vmware.documentation
|
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
2017-08-30 19:26:23 +00:00
|
|
|
- name: Gather facts from standalone ESXi server having datacenter as 'ha-datacenter'
|
2017-04-08 06:10:35 +00:00
|
|
|
vmware_guest_facts:
|
2018-08-08 11:44:27 +00:00
|
|
|
hostname: "{{ vcenter_hostname }}"
|
|
|
|
username: "{{ vcenter_username }}"
|
|
|
|
password: "{{ vcenter_password }}"
|
2017-08-30 19:26:23 +00:00
|
|
|
datacenter: ha-datacenter
|
2017-04-08 06:10:35 +00:00
|
|
|
validate_certs: no
|
|
|
|
uuid: 421e4592-c069-924d-ce20-7e7533fab926
|
|
|
|
delegate_to: localhost
|
|
|
|
register: facts
|
2017-02-06 16:52:17 +00:00
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = """
|
|
|
|
instance:
|
2017-04-20 10:04:03 +00:00
|
|
|
description: metadata about the virtual machine
|
2017-02-06 16:52:17 +00:00
|
|
|
returned: always
|
|
|
|
type: dict
|
2018-10-25 04:15:38 +00:00
|
|
|
sample: {
|
|
|
|
"annotation": "",
|
|
|
|
"current_snapshot": null,
|
|
|
|
"customvalues": {},
|
|
|
|
"guest_consolidation_needed": false,
|
|
|
|
"guest_question": null,
|
|
|
|
"guest_tools_status": "guestToolsNotRunning",
|
|
|
|
"guest_tools_version": "10247",
|
|
|
|
"hw_cores_per_socket": 1,
|
|
|
|
"hw_datastores": [
|
|
|
|
"ds_226_3"
|
|
|
|
],
|
|
|
|
"hw_esxi_host": "10.76.33.226",
|
|
|
|
"hw_eth0": {
|
|
|
|
"addresstype": "assigned",
|
|
|
|
"ipaddresses": null,
|
|
|
|
"label": "Network adapter 1",
|
|
|
|
"macaddress": "00:50:56:87:a5:9a",
|
|
|
|
"macaddress_dash": "00-50-56-87-a5-9a",
|
|
|
|
"portgroup_key": null,
|
|
|
|
"portgroup_portkey": null,
|
|
|
|
"summary": "VM Network"
|
|
|
|
},
|
|
|
|
"hw_files": [
|
|
|
|
"[ds_226_3] ubuntu_t/ubuntu_t.vmx",
|
|
|
|
"[ds_226_3] ubuntu_t/ubuntu_t.nvram",
|
|
|
|
"[ds_226_3] ubuntu_t/ubuntu_t.vmsd",
|
|
|
|
"[ds_226_3] ubuntu_t/vmware.log",
|
|
|
|
"[ds_226_3] u0001/u0001.vmdk"
|
|
|
|
],
|
|
|
|
"hw_folder": "/DC0/vm/Discovered virtual machine",
|
|
|
|
"hw_guest_full_name": null,
|
|
|
|
"hw_guest_ha_state": null,
|
|
|
|
"hw_guest_id": null,
|
|
|
|
"hw_interfaces": [
|
|
|
|
"eth0"
|
|
|
|
],
|
|
|
|
"hw_is_template": false,
|
|
|
|
"hw_memtotal_mb": 1024,
|
|
|
|
"hw_name": "ubuntu_t",
|
|
|
|
"hw_power_status": "poweredOff",
|
|
|
|
"hw_processor_count": 1,
|
|
|
|
"hw_product_uuid": "4207072c-edd8-3bd5-64dc-903fd3a0db04",
|
|
|
|
"hw_version": "vmx-13",
|
|
|
|
"instance_uuid": "5007769d-add3-1e12-f1fe-225ae2a07caf",
|
|
|
|
"ipv4": null,
|
|
|
|
"ipv6": null,
|
|
|
|
"module_hw": true,
|
|
|
|
"snapshots": [],
|
|
|
|
"tags": [
|
|
|
|
"backup"
|
|
|
|
],
|
|
|
|
"vnc": {}
|
|
|
|
}
|
2017-02-06 16:52:17 +00:00
|
|
|
"""
|
|
|
|
|
2017-07-29 15:05:38 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils._text import to_text
|
2017-11-15 06:56:50 +00:00
|
|
|
from ansible.module_utils.vmware import PyVmomi, vmware_argument_spec
|
2018-10-25 04:15:38 +00:00
|
|
|
from ansible.module_utils.vmware_rest_client import VmwareRestClient
|
|
|
|
try:
|
|
|
|
from com.vmware.cis.tagging_client import Tag, TagAssociation
|
|
|
|
HAS_VCLOUD = True
|
|
|
|
except ImportError:
|
|
|
|
HAS_VCLOUD = False
|
2017-07-29 15:05:38 +00:00
|
|
|
|
2017-02-06 16:52:17 +00:00
|
|
|
|
2017-11-15 06:56:50 +00:00
|
|
|
class PyVmomiHelper(PyVmomi):
|
2017-02-06 16:52:17 +00:00
|
|
|
def __init__(self, module):
|
2017-11-15 06:56:50 +00:00
|
|
|
super(PyVmomiHelper, self).__init__(module)
|
2017-02-06 16:52:17 +00:00
|
|
|
|
|
|
|
|
2018-10-25 04:15:38 +00:00
|
|
|
class VmwareTag(VmwareRestClient):
|
|
|
|
def __init__(self, module):
|
|
|
|
super(VmwareTag, self).__init__(module)
|
|
|
|
self.tag_service = Tag(self.connect)
|
|
|
|
self.tag_association_svc = TagAssociation(self.connect)
|
|
|
|
|
|
|
|
|
2017-02-06 16:52:17 +00:00
|
|
|
def main():
|
2017-07-21 16:12:43 +00:00
|
|
|
argument_spec = vmware_argument_spec()
|
|
|
|
argument_spec.update(
|
|
|
|
name=dict(type='str'),
|
2017-07-24 16:51:26 +00:00
|
|
|
name_match=dict(type='str', choices=['first', 'last'], default='first'),
|
2017-07-21 16:12:43 +00:00
|
|
|
uuid=dict(type='str'),
|
2018-10-25 04:15:38 +00:00
|
|
|
folder=dict(type='str'),
|
2017-07-21 16:12:43 +00:00
|
|
|
datacenter=dict(type='str', required=True),
|
2018-10-25 04:15:38 +00:00
|
|
|
tags=dict(type='bool', default=False)
|
2017-02-06 16:52:17 +00:00
|
|
|
)
|
2017-07-21 16:12:43 +00:00
|
|
|
module = AnsibleModule(argument_spec=argument_spec,
|
|
|
|
required_one_of=[['name', 'uuid']])
|
2017-02-06 16:52:17 +00:00
|
|
|
|
2018-10-25 04:15:38 +00:00
|
|
|
if module.params.get('folder'):
|
|
|
|
# FindByInventoryPath() does not require an absolute path
|
|
|
|
# so we should leave the input folder path unmodified
|
|
|
|
module.params['folder'] = module.params['folder'].rstrip('/')
|
2017-02-06 16:52:17 +00:00
|
|
|
|
|
|
|
pyv = PyVmomiHelper(module)
|
|
|
|
# Check if the VM exists before continuing
|
2017-11-15 06:56:50 +00:00
|
|
|
vm = pyv.get_vm()
|
2017-02-06 16:52:17 +00:00
|
|
|
|
|
|
|
# VM already exists
|
|
|
|
if vm:
|
|
|
|
try:
|
2018-10-25 04:15:38 +00:00
|
|
|
instance = pyv.gather_facts(vm)
|
|
|
|
if module.params.get('tags'):
|
|
|
|
if not HAS_VCLOUD:
|
|
|
|
module.fail_json(msg="Unable to find 'vCloud Suite SDK' Python library which is required."
|
|
|
|
" Please refer this URL for installation steps"
|
|
|
|
" - https://code.vmware.com/web/sdk/60/vcloudsuite-python")
|
|
|
|
|
|
|
|
vm_rest_client = VmwareTag(module)
|
|
|
|
instance.update(
|
|
|
|
tags=vm_rest_client.get_vm_tags(vm_rest_client.tag_service,
|
|
|
|
vm_rest_client.tag_association_svc,
|
|
|
|
vm_mid=vm._moId)
|
|
|
|
)
|
|
|
|
module.exit_json(instance=instance)
|
2017-07-17 17:34:43 +00:00
|
|
|
except Exception as exc:
|
|
|
|
module.fail_json(msg="Fact gather failed with exception %s" % to_text(exc))
|
2017-02-06 16:52:17 +00:00
|
|
|
else:
|
2018-10-25 04:15:38 +00:00
|
|
|
module.fail_json(msg="Unable to gather facts for non-existing VM %s" % (module.params.get('uuid') or
|
|
|
|
module.params.get('name')))
|
2017-02-06 16:52:17 +00:00
|
|
|
|
2017-07-29 15:05:38 +00:00
|
|
|
|
2017-02-06 16:52:17 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|