mirror of https://github.com/ansible/ansible.git
VMware: New module vmware_host_ipv6 (#47275)
* New module vmware_host_ipv6 * Minor changes Signed-off-by: Christian Kotte <christian.kotte@gmx.de> Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>pull/47363/head
parent
6cd17401ec
commit
cd988f645a
@ -0,0 +1,238 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright: (c) 2018, Christian Kotte <christian.kotte@gmx.de>
|
||||
#
|
||||
# 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 = r'''
|
||||
---
|
||||
module: vmware_host_ipv6
|
||||
short_description: Enables/Disables IPv6 support for an ESXi host system
|
||||
description:
|
||||
- This module can be used to enable or disable IPv6 support for ESXi host systems in given vCenter infrastructure.
|
||||
- It also checks if the host needs to be restarted.
|
||||
version_added: 2.8
|
||||
author:
|
||||
- Christian Kotte (@ckotte) <christian.kotte@gmx.de>
|
||||
notes:
|
||||
- Tested on vSphere 6.5
|
||||
requirements:
|
||||
- python >= 2.6
|
||||
- PyVmomi
|
||||
options:
|
||||
state:
|
||||
description:
|
||||
- Enable or disable IPv6 support.
|
||||
- You need to reboot the ESXi host if you change the configuration.
|
||||
type: bool
|
||||
choices: [ enabled, disabled ]
|
||||
default: 'enabled'
|
||||
esxi_hostname:
|
||||
description:
|
||||
- Name of the host system to work with.
|
||||
- This is required parameter if C(cluster_name) is not specified.
|
||||
cluster_name:
|
||||
description:
|
||||
- Name of the cluster from which all host systems will be used.
|
||||
- This is required parameter if C(esxi_hostname) is not specified.
|
||||
extends_documentation_fragment: vmware.documentation
|
||||
'''
|
||||
|
||||
EXAMPLES = r'''
|
||||
- name: Enable IPv6 for an host system
|
||||
vmware_host_ipv6:
|
||||
hostname: '{{ vcenter_hostname }}'
|
||||
username: '{{ vcenter_username }}'
|
||||
password: '{{ vcenter_password }}'
|
||||
esxi_hostname: '{{ esxi_hostname }}'
|
||||
state: enabled
|
||||
validate_certs: no
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Disable IPv6 for an host system
|
||||
vmware_host_ipv6:
|
||||
hostname: '{{ vcenter_hostname }}'
|
||||
username: '{{ vcenter_username }}'
|
||||
password: '{{ vcenter_password }}'
|
||||
esxi_hostname: '{{ esxi_hostname }}'
|
||||
state: disabled
|
||||
validate_certs: no
|
||||
delegate_to: localhost
|
||||
|
||||
- name: Disable IPv6 for all host systems from cluster
|
||||
vmware_host_ipv6:
|
||||
hostname: '{{ vcenter_hostname }}'
|
||||
username: '{{ vcenter_username }}'
|
||||
password: '{{ vcenter_password }}'
|
||||
cluster_name: '{{ cluster_name }}'
|
||||
state: disabled
|
||||
validate_certs: no
|
||||
delegate_to: localhost
|
||||
'''
|
||||
|
||||
RETURN = r'''
|
||||
result:
|
||||
description: metadata about host system's IPv6 configuration
|
||||
returned: always
|
||||
type: dict
|
||||
sample: {
|
||||
"esxi01": {
|
||||
"changed": false,
|
||||
"msg": "IPv6 is already enabled and active for host 'esxi01'",
|
||||
},
|
||||
}
|
||||
'''
|
||||
|
||||
try:
|
||||
from pyVmomi import vim, vmodl
|
||||
except ImportError:
|
||||
pass
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.vmware import PyVmomi, vmware_argument_spec
|
||||
from ansible.module_utils._text import to_native
|
||||
|
||||
|
||||
class VmwareHostIPv6(PyVmomi):
|
||||
"""Class to manage IPv6 for an ESXi host system"""
|
||||
def __init__(self, module):
|
||||
super(VmwareHostIPv6, self).__init__(module)
|
||||
cluster_name = self.params.get('cluster_name')
|
||||
esxi_host_name = self.params.get('esxi_hostname')
|
||||
self.hosts = self.get_all_host_objs(cluster_name=cluster_name, esxi_host_name=esxi_host_name)
|
||||
if not self.hosts:
|
||||
self.module.fail_json(msg="Failed to find host system with given configuration.")
|
||||
|
||||
def ensure(self):
|
||||
"""Manage IPv6 for an ESXi host system"""
|
||||
results = dict(changed=False, result=dict())
|
||||
desired_state = self.module.params['state']
|
||||
|
||||
host_change_list = []
|
||||
for host in self.hosts:
|
||||
changed = False
|
||||
results['result'][host.name] = dict(msg='')
|
||||
|
||||
host_network_system = host.configManager.networkSystem
|
||||
host_network_info = host_network_system.networkInfo
|
||||
|
||||
if desired_state == 'enabled':
|
||||
# Don't do anything if IPv6 is already enabled
|
||||
if host_network_info.atBootIpV6Enabled:
|
||||
if host_network_info.ipV6Enabled:
|
||||
results['result'][host.name]['msg'] = "IPv6 is already enabled and active for host '%s'" % \
|
||||
host.name
|
||||
if not host_network_info.ipV6Enabled:
|
||||
changed = True
|
||||
results['result'][host.name]['msg'] = ("IPv6 is already enabled for host '%s', but a reboot"
|
||||
" is required!" % host.name)
|
||||
# Enable IPv6
|
||||
else:
|
||||
if not self.module.check_mode:
|
||||
try:
|
||||
config = vim.host.NetworkConfig()
|
||||
config.ipV6Enabled = True
|
||||
host_network_system.UpdateNetworkConfig(config, "modify")
|
||||
changed = True
|
||||
results['result'][host.name]['changed'] = True
|
||||
results['result'][host.name]['msg'] = "IPv6 enabled for host '%s'" % host.name
|
||||
except (vim.fault.AlreadyExists, vim.fault.NotFound):
|
||||
self.module.fail_json(msg="Network entity specified in the configuration for host '%s'"
|
||||
" already exists" % host.name)
|
||||
except vmodl.fault.InvalidArgument as invalid_argument:
|
||||
self.module.fail_json(msg="Invalid parameter specified for host '%s' : %s" %
|
||||
(host.name, to_native(invalid_argument.msg)))
|
||||
except vim.fault.HostConfigFault as config_fault:
|
||||
self.module.fail_json(msg="Failed to enable IPv6 for host '%s' due to : %s" %
|
||||
(host.name, to_native(config_fault.msg)))
|
||||
except vmodl.fault.NotSupported as not_supported:
|
||||
self.module.fail_json(msg="Failed to enable IPv6 for host '%s' due to : %s" %
|
||||
(host.name, to_native(not_supported.msg)))
|
||||
except (vmodl.RuntimeFault, vmodl.MethodFault) as runtime_fault:
|
||||
self.module.fail_json(msg="Failed to enable IPv6 for host '%s' due to : %s" %
|
||||
(host.name, to_native(runtime_fault.msg)))
|
||||
else:
|
||||
changed = True
|
||||
results['result'][host.name]['changed'] = True
|
||||
results['result'][host.name]['msg'] = "IPv6 will be enabled for host '%s'" % host.name
|
||||
elif desired_state == 'disabled':
|
||||
# Don't do anything if IPv6 is already disabled
|
||||
if not host_network_info.atBootIpV6Enabled:
|
||||
if not host_network_info.ipV6Enabled:
|
||||
results['result'][host.name]['msg'] = "IPv6 is already disabled for host '%s'" % host.name
|
||||
if host_network_info.ipV6Enabled:
|
||||
changed = True
|
||||
results['result'][host.name]['msg'] = ("IPv6 is already disabled for host '%s',"
|
||||
" but a reboot is required!" % host.name)
|
||||
# Disable IPv6
|
||||
else:
|
||||
if not self.module.check_mode:
|
||||
try:
|
||||
config = vim.host.NetworkConfig()
|
||||
config.ipV6Enabled = False
|
||||
host_network_system.UpdateNetworkConfig(config, "modify")
|
||||
changed = True
|
||||
results['result'][host.name]['changed'] = True
|
||||
results['result'][host.name]['msg'] = "IPv6 disabled for host '%s'" % host.name
|
||||
except (vim.fault.AlreadyExists, vim.fault.NotFound):
|
||||
self.module.fail_json(msg="Network entity specified in the configuration for host '%s'"
|
||||
" already exists" % host.name)
|
||||
except vmodl.fault.InvalidArgument as invalid_argument:
|
||||
self.module.fail_json(msg="Invalid parameter specified for host '%s' : %s" %
|
||||
(host.name, to_native(invalid_argument.msg)))
|
||||
except vim.fault.HostConfigFault as config_fault:
|
||||
self.module.fail_json(msg="Failed to disable IPv6 for host '%s' due to : %s" %
|
||||
(host.name, to_native(config_fault.msg)))
|
||||
except vmodl.fault.NotSupported as not_supported:
|
||||
self.module.fail_json(msg="Failed to disable IPv6 for host '%s' due to : %s" %
|
||||
(host.name, to_native(not_supported.msg)))
|
||||
except (vmodl.RuntimeFault, vmodl.MethodFault) as runtime_fault:
|
||||
self.module.fail_json(msg="Failed to disable IPv6 for host '%s' due to : %s" %
|
||||
(host.name, to_native(runtime_fault.msg)))
|
||||
else:
|
||||
changed = True
|
||||
results['result'][host.name]['changed'] = True
|
||||
results['result'][host.name]['msg'] = "IPv6 will be disabled for host '%s'" % host.name
|
||||
|
||||
host_change_list.append(changed)
|
||||
|
||||
if any(host_change_list):
|
||||
results['changed'] = True
|
||||
self.module.exit_json(**results)
|
||||
|
||||
|
||||
def main():
|
||||
"""
|
||||
Main
|
||||
"""
|
||||
argument_spec = vmware_argument_spec()
|
||||
argument_spec.update(
|
||||
state=dict(default='enabled', choices=['enabled', 'disabled']),
|
||||
esxi_hostname=dict(type='str', required=False),
|
||||
cluster_name=dict(type='str', required=False),
|
||||
)
|
||||
|
||||
module = AnsibleModule(argument_spec=argument_spec,
|
||||
required_one_of=[
|
||||
['cluster_name', 'esxi_hostname'],
|
||||
],
|
||||
supports_check_mode=True
|
||||
)
|
||||
|
||||
ipv6 = VmwareHostIPv6(module)
|
||||
ipv6.ensure()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
@ -0,0 +1,2 @@
|
||||
shippable/vcenter/group1
|
||||
cloud/vcenter
|
@ -0,0 +1,124 @@
|
||||
# Test code for the vmware_host_ipv6 module.
|
||||
# Copyright: (c) 2018, Christian Kotte <christian.kotte@gmx.de>
|
||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
- name: store the vcenter container ip
|
||||
set_fact:
|
||||
vcsim: "{{ lookup('env', 'vcenter_host') }}"
|
||||
|
||||
- debug: var=vcsim
|
||||
|
||||
- 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
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/spawn?cluster=2
|
||||
register: vcsim_instance
|
||||
|
||||
- debug:
|
||||
var: vcsim_instance
|
||||
|
||||
- name: Wait for vcsim server to come up online
|
||||
wait_for:
|
||||
host: "{{ vcsim }}"
|
||||
port: 443
|
||||
state: started
|
||||
|
||||
- name: get a list of clusters from vcsim
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/govc_find?filter=CCR
|
||||
register: clusters
|
||||
|
||||
- name: get a cluster
|
||||
set_fact:
|
||||
ccr1: "{{ clusters.json[0] | basename }}"
|
||||
|
||||
- name: get a list of hosts from vcsim
|
||||
uri:
|
||||
url: http://{{ vcsim }}:5000/govc_find?filter=H
|
||||
register: hosts
|
||||
|
||||
- name: get a host
|
||||
set_fact:
|
||||
host1: "{{ hosts.json[0] | basename }}"
|
||||
|
||||
- debug: var=ccr1
|
||||
- debug: var=host1
|
||||
|
||||
- name: Enable IPv6 support for a given host
|
||||
vmware_host_ipv6:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ vcsim_instance.json.username }}"
|
||||
password: "{{ vcsim_instance.json.password }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
validate_certs: no
|
||||
state: enabled
|
||||
register: host_ipv6_facts
|
||||
|
||||
- debug: var=host_ipv6_facts
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- host_ipv6_facts is defined
|
||||
- host_ipv6_facts.changed
|
||||
|
||||
- name: Enable IPv6 support for a given host in check mode
|
||||
vmware_host_ipv6:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ vcsim_instance.json.username }}"
|
||||
password: "{{ vcsim_instance.json.password }}"
|
||||
esxi_hostname: "{{ host1 }}"
|
||||
validate_certs: no
|
||||
state: enabled
|
||||
register: host_ipv6_facts_check_mode
|
||||
check_mode: yes
|
||||
|
||||
- debug: var=host_ipv6_facts_check_mode
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- host_ipv6_facts_check_mode is defined
|
||||
- host_ipv6_facts_check_mode.changed
|
||||
|
||||
- name: Enable IPv6 support for all hosts in given cluster
|
||||
vmware_host_ipv6:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ vcsim_instance.json.username }}"
|
||||
password: "{{ vcsim_instance.json.password }}"
|
||||
cluster_name: "{{ ccr1 }}"
|
||||
validate_certs: no
|
||||
state: enabled
|
||||
register: hosts_ipv6_facts
|
||||
|
||||
- debug: var=hosts_ipv6_facts
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- hosts_ipv6_facts is defined
|
||||
- hosts_ipv6_facts.changed
|
||||
|
||||
- name: Enable IPv6 support for all hosts in given cluster in check mode
|
||||
vmware_host_ipv6:
|
||||
hostname: "{{ vcsim }}"
|
||||
username: "{{ vcsim_instance.json.username }}"
|
||||
password: "{{ vcsim_instance.json.password }}"
|
||||
cluster_name: "{{ ccr1 }}"
|
||||
validate_certs: no
|
||||
state: enabled
|
||||
register: hosts_ipv6_facts_check_mode
|
||||
check_mode: yes
|
||||
|
||||
- debug: var=hosts_ipv6_facts_check_mode
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- hosts_ipv6_facts_check_mode is defined
|
||||
- hosts_ipv6_facts_check_mode.changed
|
Loading…
Reference in New Issue