community.vmware.vmware_evc_mode 模块 – 在 vCenter 上启用/禁用 EVC 模式
注意
此模块是 community.vmware 集合 (版本 5.2.0) 的一部分。
如果您使用的是 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list。
要安装它,请使用:ansible-galaxy collection install community.vmware。
要在 playbook 中使用它,请指定:community.vmware.vmware_evc_mode。
概要
- 此模块可用于在 vCenter 上启用/禁用 EVC 模式。 
参数
| 参数 | 注释 | 
|---|---|
| 要在其上启用或禁用 EVC 模式的集群的名称。 | |
| 您想要在其上启用或禁用 EVC 模式的集群所属的数据中心的名称。 | |
| 对于  要在集群上启用或禁用的 EVC 模式。(intel-broadwell、intel-nehalem、intel-merom 等)。 | |
| vSphere vCenter 或 ESXi 服务器的主机名或 IP 地址。 如果任务中未指定此值,则将使用环境变量  | |
| vSphere vCenter 或 ESXi 服务器的密码。 如果任务中未指定此值,则将使用环境变量  | |
| 将接收所有 HTTPS 请求并转发它们的 HTTP 代理的端口。 如果任务中未指定此值,则将使用环境变量  | |
| 添加或删除 EVC 模式。 选项 
 | |
| vSphere vCenter 或 ESXi 服务器的用户名。 如果任务中未指定此值,则将使用环境变量  | |
| 允许在 SSL 证书无效时连接。当证书不受信任时,设置为  如果任务中未指定此值,则将使用环境变量  选项 
 | 
备注
注意
- 所有模块都需要 API 写入权限,因此在免费 ESXi 许可证上不支持。 
- 所有变量和 VMware 对象名称都区分大小写。 
示例
- name: Enable EVC Mode
  community.vmware.vmware_evc_mode:
     hostname: "{{ groups['vcsa'][0] }}"
     username: "{{ vcenter_username }}"
     password: "{{ site_password }}"
     datacenter_name: "{{ datacenter_name }}"
     cluster_name: "{{ cluster_name }}"
     evc_mode: "intel-broadwell"
     state: present
  delegate_to: localhost
  register: enable_evc
- name: Disable EVC Mode
  community.vmware.vmware_evc_mode:
     hostname: "{{ groups['vcsa'][0] }}"
     username: "{{ vcenter_username }}"
     password: "{{ site_password }}"
     datacenter_name: "{{ datacenter_name }}"
     cluster_name: "{{ cluster_name }}"
     state: absent
  delegate_to: localhost
  register: disable_evc
返回值
常见的返回值已在 此处 记录,以下是此模块特有的字段
| 键 | 描述 | 
|---|---|
| 已执行操作信息 返回值: 始终返回 示例:  | 
