community.vmware.vmware_datastore 模块 – 配置数据存储

注意

此模块是 community.vmware 集合(版本 5.2.0)的一部分。

如果您正在使用 ansible 包,则可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install community.vmware

要在 playbook 中使用它,请指定:community.vmware.vmware_datastore

community.vmware 3.0.0 中的新增功能

概要

  • 配置数据存储的存储 I/O 控制设置。

参数

参数

注释

congestion_threshold_manual

整数

存储 I/O 拥塞阈值,单位为毫秒。

仅使用 congestion_threshold_percentagecongestion_threshold_manual

仅当 storage_io_control=enable_io_statistics 时有效。

congestion_threshold_percentage

整数

存储 I/O 拥塞阈值,以峰值吞吐量的百分比表示。

介于 50% 和 100% 之间的值。

推荐:90%

仅使用 congestion_threshold_percentagecongestion_threshold_manual

仅当 storage_io_control=enable_io_statistics 时有效。

默认值: 90

datacenter

别名:datacenter_name

字符串

用于搜索数据存储的数据中心。

hostname

字符串

vSphere vCenter 或 ESXi 服务器的主机名或 IP 地址。

如果未在任务中指定该值,则将使用环境变量 VMWARE_HOST 的值。

name

字符串 / 必需

数据存储的名称。

password

别名:pass, pwd

字符串

vSphere vCenter 或 ESXi 服务器的密码。

如果未在任务中指定该值,则将使用环境变量 VMWARE_PASSWORD 的值。

port

整数

vSphere vCenter 或 ESXi 服务器的端口号。

如果未在任务中指定该值,则将使用环境变量 VMWARE_PORT 的值。

默认值: 443

proxy_host

字符串

将接收所有 HTTPS 请求并转发它们的代理的地址。

格式为主机名或 IP。

如果未在任务中指定该值,则将使用环境变量 VMWARE_PROXY_HOST 的值。

proxy_port

整数

将接收所有 HTTPS 请求并转发它们的 HTTP 代理的端口。

如果未在任务中指定该值,则将使用环境变量 VMWARE_PROXY_PORT 的值。

statistic_collection

布尔值

包含 SDRS 的 I/O 统计信息。

仅当 storage_io_control=enable_io_statisticsstorage_io_control=enable_statistics 时有效。

选项

  • false

  • true ← (默认)

storage_io_control

字符串 / 必需

指定数据存储类型。

选项

  • "enable_io_statistics"

  • "enable_statistics"

  • "disable"

username

别名:admin, user

字符串

vSphere vCenter 或 ESXi 服务器的用户名。

如果未在任务中指定该值,则将使用环境变量 VMWARE_USER 的值。

validate_certs

布尔值

当 SSL 证书无效时允许连接。当证书不受信任时,设置为 false

如果未在任务中指定该值,则将使用环境变量 VMWARE_VALIDATE_CERTS 的值。

选项

  • false

  • true ← (默认)

备注

注意

  • 所有模块都需要 API 写入访问权限,因此在免费 ESXi 许可证上不支持。

  • 所有变量和 VMware 对象名称都区分大小写。

示例

- name: Configure Storage I/O Control of an mounted datastore
  community.vmware.vmware_datastore_info:
    hostname: '{{ vcenter_hostname }}'
    username: '{{ vcenter_username }}'
    password: '{{ vcenter_password }}'
    datacenter_name: '{{ datacenter_name }}'
    name: datastore1
    storage_io_control: 'enable_io_statistics'
    congestion_threshold_manual: 30
    statistic_collection: true
  delegate_to: localhost
  register: info

返回值

通用返回值在此处文档化 这里,以下是此模块特有的字段

描述

结果

字符串

关于数据存储操作的信息。

返回: 总是

示例: "数据存储配置成功。"

作者

  • Nina Loser (@Nina2244)