community.general.proxmox_storage_info 模块 – 获取一个或多个 Proxmox VE 存储的信息
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要其他要求才能使用此模块,有关详细信息,请参阅 要求。
要在 playbook 中使用它,请指定:community.general.proxmox_storage_info
。
community.general 2.2.0 中的新增功能
概要
检索一个或多个 Proxmox VE 存储的信息。
要求
在执行此模块的主机上需要以下要求。
proxmoxer
requests
参数
参数 |
注释 |
---|---|
指定 Proxmox VE 集群的目标主机。 |
|
指定用于身份验证的密码。 您可以使用 |
|
指定 Proxmox VE 集群的目标端口。 如果未指定,则使用 |
|
指定令牌 ID。 需要 |
|
指定令牌密钥。 需要 |
|
指定用于身份验证的用户。 |
|
仅返回特定存储的信息。 |
|
按特定存储类型过滤。 |
|
如果为 这仅应在使用自签名证书的个人控制站点上使用。 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
操作组: community.general.proxmox community.general 9.0.0 中新增 |
在 |
|
支持:完全支持 此操作不会修改状态。 |
可以在 |
|
支持: N/A 此操作不会修改状态。 |
处于差异模式时,将返回有关已更改内容(或可能需要在 |
备注
注意
此模块可以返回特定于存储的选项,请查看 https://pve.proxmox.com/wiki/Storage 中的文档。
示例
- name: List existing storages
community.general.proxmox_storage_info:
api_host: helldorado
api_user: root@pam
api_password: "{{ password | default(omit) }}"
api_token_id: "{{ token_id | default(omit) }}"
api_token_secret: "{{ token_secret | default(omit) }}"
register: proxmox_storages
- name: List NFS storages only
community.general.proxmox_storage_info:
api_host: helldorado
api_user: root@pam
api_password: "{{ password | default(omit) }}"
api_token_id: "{{ token_id | default(omit) }}"
api_token_secret: "{{ token_secret | default(omit) }}"
type: nfs
register: proxmox_storages_nfs
- name: Retrieve information about the lvm2 storage
community.general.proxmox_storage_info:
api_host: helldorado
api_user: root@pam
api_password: "{{ password | default(omit) }}"
api_token_id: "{{ token_id | default(omit) }}"
api_token_secret: "{{ token_secret | default(omit) }}"
storage: lvm2
register: proxmox_storage_lvm
返回值
常见的返回值已在此处记录,以下是此模块独有的字段
键 |
描述 |
---|---|
存储池列表。 返回:成功时 |
|
此存储中可用的 Proxmox 内容类型 返回:成功时 |
|
存储的摘要 返回:成功时 |
|
与该存储关联的节点列表 返回:成功时,如果存储不是本地的 |
|
此存储的物理路径 返回:成功时 |
|
备份保留选项 返回:成功时 |
|
此存储是否共享 返回:成功时 |
|
存储名称 返回:成功时 |
|
存储类型 返回:成功时 |