VMware: rename VMWare to VMware (#58535)

Follow the nomenclature convention decided in https://github.com/ansible/ansible/pull/56814
This commit is contained in:
Gonéri Le Bouder 2019-06-30 10:00:43 -04:00 committed by Abhijeet Kasurde
parent 35dcd231be
commit 2401154fc4
28 changed files with 48 additions and 48 deletions

View file

@ -48,7 +48,7 @@ password=vmware
#skip_keys = declaredalarmstate,disabledmethod,dynamicproperty,dynamictype,environmentbrowser,managedby,parent,childtype,resourceconfig #skip_keys = declaredalarmstate,disabledmethod,dynamicproperty,dynamictype,environmentbrowser,managedby,parent,childtype,resourceconfig
# Host alias for objects in the inventory. VMWare allows duplicate VM names # Host alias for objects in the inventory. VMware allows duplicate VM names
# so they can not be considered unique. Use this setting to alter the alias # so they can not be considered unique. Use this setting to alter the alias
# returned for the hosts. Any atributes for the guest can be used to build # returned for the hosts. Any atributes for the guest can be used to build
# this alias. The default combines the config name and the config uuid and # this alias. The default combines the config name and the config uuid and

View file

@ -73,7 +73,7 @@ Caveats
- Hosts in the ESXi cluster must have access to the datastore that the template resides on. - Hosts in the ESXi cluster must have access to the datastore that the template resides on.
- Multiple templates with the same name will cause module failures. - Multiple templates with the same name will cause module failures.
- In order to utilize Guest Customization, VMWare Tools must be installed on the template. For Linux, the ``open-vm-tools`` package is recommended, and it requires that ``Perl`` be installed. - In order to utilize Guest Customization, VMware Tools must be installed on the template. For Linux, the ``open-vm-tools`` package is recommended, and it requires that ``Perl`` be installed.
Example Description Example Description

View file

@ -53,7 +53,7 @@ options:
type: bool type: bool
is_dynamically_scalable: is_dynamically_scalable:
description: description:
- Register the ISO having XS/VMWare tools installed inorder to support dynamic scaling of VM cpu/memory. Only used if I(state) is present. - Register the ISO having XS/VMware tools installed inorder to support dynamic scaling of VM cpu/memory. Only used if I(state) is present.
type: bool type: bool
checksum: checksum:
description: description:

View file

@ -68,7 +68,7 @@ options:
type: bool type: bool
is_dynamically_scalable: is_dynamically_scalable:
description: description:
- Register the template having XS/VMWare tools installed in order to support dynamic scaling of VM CPU/memory. - Register the template having XS/VMware tools installed in order to support dynamic scaling of VM CPU/memory.
- Only used if I(state) is C(present). - Only used if I(state) is C(present).
type: bool type: bool
cross_zones: cross_zones:

View file

@ -18,7 +18,7 @@ DOCUMENTATION = '''
module: vmware_cluster_facts module: vmware_cluster_facts
short_description: Gather facts about clusters available in given vCenter short_description: Gather facts about clusters available in given vCenter
description: description:
- This module can be used to gather facts about clusters in VMWare infrastructure. - This module can be used to gather facts about clusters in VMware infrastructure.
- All values and VMware object names are case sensitive. - All values and VMware object names are case sensitive.
version_added: '2.6' version_added: '2.6'
author: author:

View file

@ -19,7 +19,7 @@ DOCUMENTATION = '''
module: vmware_datastore_facts module: vmware_datastore_facts
short_description: Gather facts about datastores available in given vCenter short_description: Gather facts about datastores available in given vCenter
description: description:
- This module can be used to gather facts about datastores in VMWare infrastructure. - This module can be used to gather facts about datastores in VMware infrastructure.
- All values and VMware object names are case sensitive. - All values and VMware object names are case sensitive.
version_added: 2.5 version_added: 2.5
author: author:

View file

@ -84,7 +84,7 @@ options:
- Please note that a supplied UUID will be ignored on virtual machine creation, as VMware creates the UUID internally. - Please note that a supplied UUID will be ignored on virtual machine creation, as VMware creates the UUID internally.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'
@ -598,7 +598,7 @@ from ansible.module_utils.vmware import (find_obj, gather_vm_facts, get_all_objs
class PyVmomiDeviceHelper(object): class PyVmomiDeviceHelper(object):
""" This class is a helper to create easily VMWare Objects for PyVmomiHelper """ """ This class is a helper to create easily VMware Objects for PyVmomiHelper """
def __init__(self, module): def __init__(self, module):
self.module = module self.module = module
@ -1333,7 +1333,7 @@ class PyVmomiHelper(PyVmomi):
"The failing new MAC address is %s" % nic.device.macAddress) "The failing new MAC address is %s" % nic.device.macAddress)
else: else:
# Default device type is vmxnet3, VMWare best practice # Default device type is vmxnet3, VMware best practice
device_type = network_devices[key].get('device_type', 'vmxnet3') device_type = network_devices[key].get('device_type', 'vmxnet3')
nic = self.device_helper.create_nic(device_type, nic = self.device_helper.create_nic(device_type,
'Network Adapter %s' % (key + 1), 'Network Adapter %s' % (key + 1),
@ -1872,7 +1872,7 @@ class PyVmomiHelper(PyVmomi):
pass pass
kb = self.get_configured_disk_size(expected_disk_spec) kb = self.get_configured_disk_size(expected_disk_spec)
# VMWare doesn't allow to reduce disk sizes # VMware doesn't allow to reduce disk sizes
if kb < diskspec.device.capacityInKB: if kb < diskspec.device.capacityInKB:
self.module.fail_json( self.module.fail_json(
msg="Given disk size is smaller than found (%d < %d). Reducing disks is not allowed." % msg="Given disk size is smaller than found (%d < %d). Reducing disks is not allowed." %
@ -2383,7 +2383,7 @@ class PyVmomiHelper(PyVmomi):
if task.info.state == 'error': if task.info.state == 'error':
return {'changed': self.change_applied, 'failed': True, 'msg': task.info.error.msg, 'op': 'relocate'} return {'changed': self.change_applied, 'failed': True, 'msg': task.info.error.msg, 'op': 'relocate'}
# Only send VMWare task if we see a modification # Only send VMware task if we see a modification
if self.change_detected: if self.change_detected:
task = None task = None
try: try:
@ -2441,7 +2441,7 @@ class PyVmomiHelper(PyVmomi):
self.module.fail_json(msg="Failed to convert template to virtual machine" self.module.fail_json(msg="Failed to convert template to virtual machine"
" due to generic error : %s" % to_native(generic_exc)) " due to generic error : %s" % to_native(generic_exc))
# Automatically update VMWare UUID when converting template to VM. # Automatically update VMware UUID when converting template to VM.
# This avoids an interactive prompt during VM startup. # This avoids an interactive prompt during VM startup.
uuid_action = [x for x in self.current_vm_obj.config.extraConfig if x.key == "uuid.action"] uuid_action = [x for x in self.current_vm_obj.config.extraConfig if x.key == "uuid.action"]
if not uuid_action: if not uuid_action:

View file

@ -40,7 +40,7 @@ options:
- This is required if C(name) parameter is not supplied. - This is required if C(name) parameter is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -40,7 +40,7 @@ options:
- This is required if C(name) parameter is not supplied. - This is required if C(name) parameter is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -18,9 +18,9 @@ ANSIBLE_METADATA = {
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: vmware_guest_custom_attribute_defs module: vmware_guest_custom_attribute_defs
short_description: Manage custom attributes definitions for virtual machine from VMWare short_description: Manage custom attributes definitions for virtual machine from VMware
description: description:
- This module can be used to add and remove custom attributes definitions for the given virtual machine from VMWare. - This module can be used to add and remove custom attributes definitions for the given virtual machine from VMware.
version_added: 2.7 version_added: 2.7
author: author:
- Jimmy Conner (@cigamit) - Jimmy Conner (@cigamit)
@ -50,7 +50,7 @@ extends_documentation_fragment: vmware.documentation
''' '''
EXAMPLES = ''' EXAMPLES = '''
- name: Add VMWare Attribute Definition - name: Add VMware Attribute Definition
vmware_guest_custom_attribute_defs: vmware_guest_custom_attribute_defs:
hostname: "{{ vcenter_hostname }}" hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}" username: "{{ vcenter_username }}"
@ -60,7 +60,7 @@ EXAMPLES = '''
delegate_to: localhost delegate_to: localhost
register: defs register: defs
- name: Remove VMWare Attribute Definition - name: Remove VMware Attribute Definition
vmware_guest_custom_attribute_defs: vmware_guest_custom_attribute_defs:
hostname: "{{ vcenter_hostname }}" hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}" username: "{{ vcenter_username }}"

View file

@ -20,7 +20,7 @@ ANSIBLE_METADATA = {
DOCUMENTATION = ''' DOCUMENTATION = '''
--- ---
module: vmware_guest_custom_attributes module: vmware_guest_custom_attributes
short_description: Manage custom attributes from VMWare for the given virtual machine short_description: Manage custom attributes from VMware for the given virtual machine
description: description:
- This module can be used to add, remove and update custom attributes for the given virtual machine. - This module can be used to add, remove and update custom attributes for the given virtual machine.
version_added: 2.7 version_added: 2.7
@ -50,7 +50,7 @@ options:
- This is required parameter, if C(name) is not supplied. - This is required parameter, if C(name) is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -62,7 +62,7 @@ options:
required: True required: True
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -43,7 +43,7 @@ options:
- This is required parameter, if parameter C(name) is not supplied. - This is required parameter, if parameter C(name) is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -46,7 +46,7 @@ options:
- This is required if name is not supplied. - This is required if name is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -38,7 +38,7 @@ options:
- This is required if C(name) parameter is not supplied. - This is required if C(name) parameter is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -39,7 +39,7 @@ options:
- This is required if C(name) is not supplied. - This is required if C(name) is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -44,7 +44,7 @@ options:
- This is required if name is not supplied. - This is required if name is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -56,7 +56,7 @@ options:
- This is required if C(name) parameter is not supplied. - This is required if C(name) parameter is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'
@ -92,7 +92,7 @@ options:
quiesce: quiesce:
description: description:
- If set to C(true) and virtual machine is powered on, it will quiesce the file system in virtual machine. - If set to C(true) and virtual machine is powered on, it will quiesce the file system in virtual machine.
- Note that VMWare Tools are required for this flag. - Note that VMware Tools are required for this flag.
- If virtual machine is powered off or VMware Tools are not available, then this flag is set to C(false). - If virtual machine is powered off or VMware Tools are not available, then this flag is set to C(false).
- If virtual machine does not provide capability to take quiesce snapshot, then this flag is set to C(false). - If virtual machine does not provide capability to take quiesce snapshot, then this flag is set to C(false).
required: False required: False

View file

@ -40,7 +40,7 @@ options:
- The C(folder) is ignored, if C(uuid) is provided. - The C(folder) is ignored, if C(uuid) is provided.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -20,7 +20,7 @@ module: vmware_guest_tools_upgrade
short_description: Module to upgrade VMTools short_description: Module to upgrade VMTools
version_added: 2.8 version_added: 2.8
description: description:
- This module upgrades the VMWare Tools on Windows and Linux guests. - This module upgrades the VMware Tools on Windows and Linux guests.
requirements: requirements:
- "python >= 2.6" - "python >= 2.6"
- PyVmomi - PyVmomi
@ -66,7 +66,7 @@ author:
''' '''
EXAMPLES = ''' EXAMPLES = '''
- name: Upgrade VMWare Tools - name: Upgrade VMware Tools
vmware_guest_tools_upgrade: vmware_guest_tools_upgrade:
hostname: "{{ vcenter_hostname }}" hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}" username: "{{ vcenter_username }}"
@ -134,7 +134,7 @@ class PyVmomiHelper(PyVmomi):
else: else:
result.update( result.update(
failed=True, failed=True,
msg="VMWare tools could not be upgraded", msg="VMware tools could not be upgraded",
) )
return result return result

View file

@ -58,7 +58,7 @@ options:
- This is required, if C(name) is not supplied. - This is required, if C(name) is not supplied.
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -238,7 +238,7 @@ class VMwareShellManager(PyVmomi):
tools_status = vm.guest.toolsStatus tools_status = vm.guest.toolsStatus
if tools_status in ['toolsNotInstalled', 'toolsNotRunning']: if tools_status in ['toolsNotInstalled', 'toolsNotRunning']:
self.module.fail_json(msg="VMWareTools is not installed or is not running in the guest." self.module.fail_json(msg="VMwareTools is not installed or is not running in the guest."
" VMware Tools are necessary to run this module.") " VMware Tools are necessary to run this module.")
try: try:

View file

@ -49,7 +49,7 @@ options:
version_added: 2.7 version_added: 2.7
use_instance_uuid: use_instance_uuid:
description: description:
- Whether to use the VMWare instance UUID rather than the BIOS UUID. - Whether to use the VMware instance UUID rather than the BIOS UUID.
default: no default: no
type: bool type: bool
version_added: '2.8' version_added: '2.8'

View file

@ -77,7 +77,7 @@ EXAMPLES = '''
mtu: 9000 mtu: 9000
delegate_to: localhost delegate_to: localhost
- name: Add a VMWare vSwitch without any physical NIC attached - name: Add a VMware vSwitch without any physical NIC attached
vmware_vswitch: vmware_vswitch:
hostname: '{{ esxi_hostname }}' hostname: '{{ esxi_hostname }}'
username: '{{ esxi_username }}' username: '{{ esxi_username }}'
@ -86,7 +86,7 @@ EXAMPLES = '''
mtu: 9000 mtu: 9000
delegate_to: localhost delegate_to: localhost
- name: Add a VMWare vSwitch with multiple NICs - name: Add a VMware vSwitch with multiple NICs
vmware_vswitch: vmware_vswitch:
hostname: '{{ esxi_hostname }}' hostname: '{{ esxi_hostname }}'
username: '{{ esxi_username }}' username: '{{ esxi_username }}'

View file

@ -19,7 +19,7 @@ DOCUMENTATION = '''
module: vsphere_copy module: vsphere_copy
short_description: Copy a file to a VMware datastore short_description: Copy a file to a VMware datastore
description: description:
- Upload files to a VMware datastore through a VCenter REST API. - Upload files to a VMware datastore through a vCenter REST API.
version_added: 2.0 version_added: 2.0
author: author:
- Dag Wieers (@dagwieers) - Dag Wieers (@dagwieers)

View file

@ -200,7 +200,7 @@ extends_documentation_fragment:
''' '''
EXAMPLES = """ EXAMPLES = """
- name: Create a VMWare cloud with write access mode - name: Create a VMware cloud with write access mode
avi_cloud: avi_cloud:
username: '{{ username }}' username: '{{ username }}'
controller: '{{ controller }}' controller: '{{ controller }}'
@ -210,7 +210,7 @@ EXAMPLES = """
enable_vip_static_routes: false enable_vip_static_routes: false
license_type: LIC_CORES license_type: LIC_CORES
mtu: 1500 mtu: 1500
name: VCenter Cloud name: vCenter Cloud
prefer_static_routes: false prefer_static_routes: false
tenant_ref: admin tenant_ref: admin
vcenter_configuration: vcenter_configuration:

View file

@ -265,9 +265,9 @@
that: that:
- "result is changed" - "result is changed"
- name: Create a valid VMWare credential - name: Create a valid VMware credential
tower_credential: tower_credential:
name: VMWare Credential name: VMware Credential
organization: Default organization: Default
state: present state: present
kind: vmware kind: vmware
@ -280,9 +280,9 @@
that: that:
- "result is changed" - "result is changed"
- name: Delete an VMWare credential - name: Delete an VMware credential
tower_credential: tower_credential:
name: VMWare Credential name: VMware Credential
organization: Default organization: Default
state: absent state: absent
kind: vmware kind: vmware

View file

@ -53,7 +53,7 @@ class VcenterProvider(CloudProvider):
self.image = 'quay.io/ansible/vcenter-test-container:1.5.0' self.image = 'quay.io/ansible/vcenter-test-container:1.5.0'
self.container_name = '' self.container_name = ''
# VMWare tests can be run on govcsim or baremetal, either BYO with a static config # VMware tests can be run on govcsim or baremetal, either BYO with a static config
# file or hosted in worldstream. Using an env var value of 'worldstream' with appropriate # file or hosted in worldstream. Using an env var value of 'worldstream' with appropriate
# CI credentials will deploy a dynamic baremetal environment. The simulator is the default # CI credentials will deploy a dynamic baremetal environment. The simulator is the default
# if no other config if provided. # if no other config if provided.
@ -226,7 +226,7 @@ class VcenterProvider(CloudProvider):
self._wait_for_service() self._wait_for_service()
def _wait_for_service(self): def _wait_for_service(self):
"""Wait for the VCenter service endpoint to accept connections.""" """Wait for the vCenter service endpoint to accept connections."""
if self.args.explain: if self.args.explain:
return return
@ -234,7 +234,7 @@ class VcenterProvider(CloudProvider):
endpoint = 'https://%s:%s' % (self.endpoint, self.port) endpoint = 'https://%s:%s' % (self.endpoint, self.port)
for i in range(1, 30): for i in range(1, 30):
display.info('Waiting for VCenter service: %s' % endpoint, verbosity=1) display.info('Waiting for vCenter service: %s' % endpoint, verbosity=1)
try: try:
client.get(endpoint) client.get(endpoint)
@ -244,7 +244,7 @@ class VcenterProvider(CloudProvider):
time.sleep(10) time.sleep(10)
raise ApplicationError('Timeout waiting for VCenter service.') raise ApplicationError('Timeout waiting for vCenter service.')
class VcenterEnvironment(CloudEnvironment): class VcenterEnvironment(CloudEnvironment):