community.vmware.vmware_cluster module – Manage VMware vSphere clusters
Note
This module is part of the community.vmware collection (version 1.18.2).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.vmware
.
To use it in a playbook, specify: community.vmware.vmware_cluster
.
Synopsis
Adds or removes VMware vSphere clusters.
Although this module can manage DRS, HA and VSAN related configurations, this functionality is deprecated and will be removed in 2.12.
To manage DRS, HA and VSAN related configurations, use the new modules vmware_cluster_drs, vmware_cluster_ha and vmware_cluster_vsan.
All values and VMware object names are case sensitive.
Requirements
The below requirements are needed on the host that executes this module.
Tested on ESXi 5.5 and 6.5.
PyVmomi installed.
Parameters
Parameter |
Comments |
---|---|
The name of the cluster to be managed. |
|
The name of the datacenter. |
|
Specifies the cluster-wide default DRS behavior for virtual machines. If set to If set to If set to Use Deprecated option, will be removed in version 2.12. Choices:
|
|
Determines whether DRS Behavior overrides for individual virtual machines are enabled. If set to Use Deprecated option, will be removed in version 2.12. Choices:
|
|
Threshold for generated ClusterRecommendations. Use Deprecated option, will be removed in version 2.12. Choices:
Default: 3 |
|
If set to Use Deprecated option, will be removed in version 2.12. Choices:
|
|
If set to Use Deprecated option, will be removed in version 2.12. Choices:
|
|
If set to Use Deprecated option, will be removed in version 2.12. Choices:
|
|
Determines if strict admission control is enabled. It is recommended to set this parameter to Use Deprecated option, will be removed in version 2.12. Choices:
|
|
Number of host failures that should be tolerated, still guaranteeing sufficient resources to restart virtual machines on available hosts. Accepts integer values only. Use Deprecated option, will be removed in version 2.12. Default: 2 |
|
Indicates whether HA restarts virtual machines after a host fails. If set to If set to If Use Deprecated option, will be removed in version 2.12. Choices:
|
|
Determines the preference that HA gives to a virtual machine if sufficient capacity is not available to power on all failed virtual machines. This setting is only valid if If set to If set to If set to If set to Use Deprecated option, will be removed in version 2.12. Choices:
|
|
The number of seconds after which virtual machine is declared as failed if no heartbeat has been received. This setting is only valid if Unit is seconds. Use Deprecated option, will be removed in version 2.12. Default: 30 |
|
The number of seconds for the window during which up to This setting is only valid if Unit is seconds. Default specifies no failure window. Use Deprecated option, will be removed in version 2.12. Default: -1 |
|
Maximum number of failures and automated resets allowed during the time that This setting is only valid if Use Deprecated option, will be removed in version 2.12. Default: 3 |
|
The number of seconds for the virtual machine’s heartbeats to stabilize after the virtual machine has been powered on. This setting is only valid if Unit is seconds. Use Deprecated option, will be removed in version 2.12. Default: 120 |
|
Indicates the state of virtual machine health monitoring service. If set to If set to If set to If Use Deprecated option, will be removed in version 2.12. Choices:
|
|
The hostname or IP address of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. |
|
If set to Choices:
|
|
If set to Choices:
|
|
If set to Choices:
|
|
The password of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. |
|
The port number of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. Default: 443 |
|
Address of a proxy that will receive all HTTPS requests and relay them. The format is a hostname or a IP. If the value is not specified in the task, the value of environment variable This feature depends on a version of pyvmomi greater than v6.7.1.2018.12 |
|
Port of the HTTP proxy that will receive all HTTPS requests and relay them. If the value is not specified in the task, the value of environment variable |
|
Create Choices:
|
|
The username of the vSphere vCenter or ESXi server. If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. |
|
Allows connection when SSL certificates are not valid. Set to If the value is not specified in the task, the value of environment variable Environment variable support added in Ansible 2.6. If set to Choices:
|
|
Determines whether the VSAN service is configured to automatically claim local storage on VSAN-enabled hosts in the cluster. Use Deprecated option, will be removed in version 2.12. Choices:
|
Notes
Note
All modules requires API write access and hence is not supported on a free ESXi license.
See Also
See also
- community.vmware.vmware_cluster_drs
The official documentation on the community.vmware.vmware_cluster_drs module.
- community.vmware.vmware_cluster_ha
The official documentation on the community.vmware.vmware_cluster_ha module.
- community.vmware.vmware_cluster_vsan
The official documentation on the community.vmware.vmware_cluster_vsan module.
Examples
- name: Create Cluster
community.vmware.vmware_cluster:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
datacenter_name: datacenter
cluster_name: cluster
enable_ha: true
enable_drs: true
enable_vsan: true
delegate_to: localhost
- name: Create Cluster with additional changes
community.vmware.vmware_cluster:
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
datacenter_name: DC0
cluster_name: "{{ cluster_name }}"
enable_ha: True
ha_vm_monitoring: vmMonitoringOnly
enable_drs: True
drs_default_vm_behavior: partiallyAutomated
enable_vsan: True
register: cl_result
delegate_to: localhost
- name: Delete Cluster
community.vmware.vmware_cluster:
hostname: "{{ vcenter_hostname }}"
username: "{{ vcenter_username }}"
password: "{{ vcenter_password }}"
datacenter_name: datacenter
cluster_name: cluster
enable_ha: true
enable_drs: true
enable_vsan: true
state: absent
delegate_to: localhost
Authors
Joseph Callen (@jcpowermac)
Abhijeet Kasurde (@Akasurde)