mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
VMware: new module : vmware_guest_boot_facts (#43240)
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
281c8f6861
commit
3dcbf3b003
3 changed files with 256 additions and 0 deletions
178
lib/ansible/modules/cloud/vmware/vmware_guest_boot_facts.py
Normal file
178
lib/ansible/modules/cloud/vmware/vmware_guest_boot_facts.py
Normal file
|
@ -0,0 +1,178 @@
|
||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Copyright: (c) 2018, Ansible Project
|
||||||
|
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
|
||||||
|
ANSIBLE_METADATA = {
|
||||||
|
'metadata_version': '1.1',
|
||||||
|
'status': ['preview'],
|
||||||
|
'supported_by': 'community'
|
||||||
|
}
|
||||||
|
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
---
|
||||||
|
module: vmware_guest_boot_facts
|
||||||
|
short_description: Gather facts about boot options for the given virtual machine
|
||||||
|
description:
|
||||||
|
- This module can be used to gather facts aboyt boot options for the given virtual machine.
|
||||||
|
version_added: 2.7
|
||||||
|
author:
|
||||||
|
- Abhijeet Kasurde (@Akasurde) <akasurde@redhat.com>
|
||||||
|
notes:
|
||||||
|
- Tested on vSphere 6.5
|
||||||
|
requirements:
|
||||||
|
- "python >= 2.6"
|
||||||
|
- PyVmomi
|
||||||
|
options:
|
||||||
|
name:
|
||||||
|
description:
|
||||||
|
- Name of the VM to work with.
|
||||||
|
- This is required if C(uuid) parameter is not supplied.
|
||||||
|
uuid:
|
||||||
|
description:
|
||||||
|
- UUID of the instance to manage if known, this is VMware's BIOS UUID.
|
||||||
|
- This is required if C(name) parameter is not supplied.
|
||||||
|
name_match:
|
||||||
|
description:
|
||||||
|
- If multiple virtual machines matching the name, use the first or last found.
|
||||||
|
default: 'first'
|
||||||
|
choices: ['first', 'last']
|
||||||
|
extends_documentation_fragment: vmware.documentation
|
||||||
|
'''
|
||||||
|
|
||||||
|
EXAMPLES = r'''
|
||||||
|
- name: Gather facts about virtual machine's boot order and related parameters
|
||||||
|
vmware_guest_boot_facts:
|
||||||
|
hostname: "{{ vcenter_hostname }}"
|
||||||
|
username: "{{ vcenter_username }}"
|
||||||
|
password: "{{ vcenter_password }}"
|
||||||
|
validate_certs: no
|
||||||
|
name: "{{ vm_name }}"
|
||||||
|
register: vm_boot_order_facts
|
||||||
|
'''
|
||||||
|
|
||||||
|
RETURN = r"""
|
||||||
|
vm_boot_facts:
|
||||||
|
description: metadata about boot order of virtual machine
|
||||||
|
returned: always
|
||||||
|
type: dict
|
||||||
|
sample: {
|
||||||
|
"current_boot_order": [
|
||||||
|
"floppy",
|
||||||
|
"disk",
|
||||||
|
"ethernet",
|
||||||
|
"cdrom"
|
||||||
|
],
|
||||||
|
"current_boot_delay": 2000,
|
||||||
|
"current_boot_retry_delay": 22300,
|
||||||
|
"current_boot_retry_enabled": true,
|
||||||
|
"current_enter_bios_setup": true,
|
||||||
|
"current_boot_firmware": "bios",
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
from ansible.module_utils.vmware import PyVmomi, vmware_argument_spec, find_vm_by_id
|
||||||
|
|
||||||
|
try:
|
||||||
|
from pyVmomi import vim
|
||||||
|
except ImportError:
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
class VmBootFactsManager(PyVmomi):
|
||||||
|
def __init__(self, module):
|
||||||
|
super(VmBootFactsManager, self).__init__(module)
|
||||||
|
self.name = self.params['name']
|
||||||
|
self.uuid = self.params['uuid']
|
||||||
|
self.vm = None
|
||||||
|
|
||||||
|
def _get_vm(self):
|
||||||
|
vms = []
|
||||||
|
|
||||||
|
if self.uuid:
|
||||||
|
vm_obj = find_vm_by_id(self.content, vm_id=self.uuid, vm_id_type="uuid")
|
||||||
|
if vm_obj is None:
|
||||||
|
self.module.fail_json(msg="Failed to find the virtual machine with UUID : %s" % self.uuid)
|
||||||
|
vms = [vm_obj]
|
||||||
|
|
||||||
|
elif self.name:
|
||||||
|
objects = self.get_managed_objects_properties(vim_type=vim.VirtualMachine, properties=['name'])
|
||||||
|
for temp_vm_object in objects:
|
||||||
|
if temp_vm_object.obj.name == self.name:
|
||||||
|
vms.append(temp_vm_object.obj)
|
||||||
|
|
||||||
|
if vms:
|
||||||
|
if self.params.get('name_match') == 'first':
|
||||||
|
self.vm = vms[0]
|
||||||
|
elif self.params.get('name_match') == 'last':
|
||||||
|
self.vm = vms[-1]
|
||||||
|
else:
|
||||||
|
self.module.fail_json(msg="Failed to find virtual machine using %s" % (self.name or self.uuid))
|
||||||
|
|
||||||
|
@staticmethod
|
||||||
|
def humanize_boot_order(boot_order):
|
||||||
|
results = []
|
||||||
|
for device in boot_order:
|
||||||
|
if isinstance(device, vim.vm.BootOptions.BootableCdromDevice):
|
||||||
|
results.append('cdrom')
|
||||||
|
elif isinstance(device, vim.vm.BootOptions.BootableDiskDevice):
|
||||||
|
results.append('disk')
|
||||||
|
elif isinstance(device, vim.vm.BootOptions.BootableEthernetDevice):
|
||||||
|
results.append('ethernet')
|
||||||
|
elif isinstance(device, vim.vm.BootOptions.BootableFloppyDevice):
|
||||||
|
results.append('floppy')
|
||||||
|
return results
|
||||||
|
|
||||||
|
def ensure(self):
|
||||||
|
self._get_vm()
|
||||||
|
|
||||||
|
results = dict()
|
||||||
|
if self.vm and self.vm.config:
|
||||||
|
results = dict(
|
||||||
|
current_boot_order=self.humanize_boot_order(self.vm.config.bootOptions.bootOrder),
|
||||||
|
current_boot_delay=self.vm.config.bootOptions.bootDelay,
|
||||||
|
current_enter_bios_setup=self.vm.config.bootOptions.enterBIOSSetup,
|
||||||
|
current_boot_retry_enabled=self.vm.config.bootOptions.bootRetryEnabled,
|
||||||
|
current_boot_retry_delay=self.vm.config.bootOptions.bootRetryDelay,
|
||||||
|
current_boot_firmware=self.vm.config.firmware,
|
||||||
|
)
|
||||||
|
|
||||||
|
self.module.exit_json(changed=False, vm_boot_facts=results)
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
|
argument_spec = vmware_argument_spec()
|
||||||
|
argument_spec.update(
|
||||||
|
name=dict(type='str'),
|
||||||
|
uuid=dict(type='str'),
|
||||||
|
name_match=dict(
|
||||||
|
choices=['first', 'last'],
|
||||||
|
default='first'
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=argument_spec,
|
||||||
|
required_one_of=[
|
||||||
|
['name', 'uuid']
|
||||||
|
],
|
||||||
|
mutually_exclusive=[
|
||||||
|
['name', 'uuid']
|
||||||
|
],
|
||||||
|
supports_check_mode=True,
|
||||||
|
)
|
||||||
|
|
||||||
|
pyv = VmBootFactsManager(module)
|
||||||
|
pyv.ensure()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
2
test/integration/targets/vmware_guest_boot_facts/aliases
Normal file
2
test/integration/targets/vmware_guest_boot_facts/aliases
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
cloud/vcenter
|
||||||
|
unsupported
|
|
@ -0,0 +1,76 @@
|
||||||
|
# Test code for the vmware_guest_boot_facts module.
|
||||||
|
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
- name: Wait for Flask controller to come up online
|
||||||
|
wait_for:
|
||||||
|
host: "{{ vcsim }}"
|
||||||
|
port: 5000
|
||||||
|
state: started
|
||||||
|
|
||||||
|
- name: kill vcsim
|
||||||
|
uri:
|
||||||
|
url: http://{{ vcsim }}:5000/killall
|
||||||
|
- name: start vcsim with no folders
|
||||||
|
uri:
|
||||||
|
url: http://{{ vcsim }}:5000/spawn?datacenter=1&cluster=1&folder=0
|
||||||
|
register: vcsim_instance
|
||||||
|
|
||||||
|
- name: Wait for Flask controller to come up online
|
||||||
|
wait_for:
|
||||||
|
host: "{{ vcsim }}"
|
||||||
|
port: 443
|
||||||
|
state: started
|
||||||
|
|
||||||
|
- name: get a list of VMS from vcsim
|
||||||
|
uri:
|
||||||
|
url: http://{{ vcsim }}:5000/govc_find?filter=VM
|
||||||
|
register: vmlist
|
||||||
|
|
||||||
|
- debug: var=vcsim_instance
|
||||||
|
- debug: var=vmlist
|
||||||
|
|
||||||
|
- name: Gather facts about VM boot order
|
||||||
|
vmware_guest_boot_facts:
|
||||||
|
validate_certs: no
|
||||||
|
hostname: "{{ vcsim }}"
|
||||||
|
username: "{{ vcsim_instance['json']['username'] }}"
|
||||||
|
password: "{{ vcsim_instance['json']['password'] }}"
|
||||||
|
name: "{{ item|basename }}"
|
||||||
|
with_items: "{{ vmlist['json'] }}"
|
||||||
|
register: boot_d1_c1_f0
|
||||||
|
|
||||||
|
- debug: var=boot_d1_c1_f0
|
||||||
|
|
||||||
|
- name: assert that changes were made
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_delay is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_firmware is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_order is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_delay is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_enabled is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_enter_bios_setup is defined
|
||||||
|
|
||||||
|
- name: Gather facts about VM boot order in check mode
|
||||||
|
vmware_guest_boot_facts:
|
||||||
|
validate_certs: no
|
||||||
|
hostname: "{{ vcsim }}"
|
||||||
|
username: "{{ vcsim_instance['json']['username'] }}"
|
||||||
|
password: "{{ vcsim_instance['json']['password'] }}"
|
||||||
|
name: "{{ item|basename }}"
|
||||||
|
with_items: "{{ vmlist['json'] }}"
|
||||||
|
check_mode: yes
|
||||||
|
register: boot_d1_c1_f0
|
||||||
|
|
||||||
|
- debug: var=boot_d1_c1_f0
|
||||||
|
|
||||||
|
- name: assert that changes were made
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_delay is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_firmware is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_order is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_delay is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_boot_retry_enabled is defined
|
||||||
|
- boot_d1_c1_f0.results.vm_boot_facts.current_enter_bios_setup is defined
|
Loading…
Reference in a new issue