community.vmware.vmware_content_library_manager 模块 – 创建、更新和删除 VMware 内容库
注意
此模块是 community.vmware 集合 (版本 5.2.0) 的一部分。
如果您使用的是 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.vmware
。您需要其他要求才能使用此模块,有关详细信息,请参阅 要求。
要在剧本中使用它,请指定: community.vmware.vmware_content_library_manager
。
概要
用于管理 VMware 内容库的模块
内容库功能在 vSphere 6.0 版本中引入,因此此模块在早期版本的 vSphere 中不受支持。
要求
执行此模块的主机需要以下要求。
vSphere 自动化 SDK
参数
参数 |
注释 |
---|---|
vSphere vCenter 服务器的主机名或 IP 地址。 如果任务中未指定值,则将使用环境变量 |
|
要管理的 VMware 内容库的名称。 |
|
内容库类型。 仅当 当 选项
|
|
vSphere vCenter 服务器的密码。 如果任务中未指定值,则将使用环境变量 |
|
连接协议。 选项
|
|
将接收所有 HTTPS 请求并转发它们的 HTTP 代理的端口。 如果任务中未指定值,则将使用环境变量 |
|
要订阅的已订阅内容库的 SHA1 SSL 指纹。 如果 当 可以使用 openssl 使用以下示例提取信息: 默认值: |
|
内容库的状态。 如果设置为 如果设置为 如果设置为 如果设置为 选项
|
|
是否按需下载所有内容。 如果设置为 如果设置为 如果 当 选项
|
|
vSphere vCenter 服务器的用户名。 如果任务中未指定值,则将使用环境变量 |
|
备注
注意
所有模块都需要 API 写入访问权限,因此在免费 ESXi 许可证上不支持。
所有变量和 VMware 对象名称都区分大小写。
示例
- name: Create Local Content Library
community.vmware.vmware_content_library_manager:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
library_name: test-content-lib
library_description: 'Library with Datastore Backing'
library_type: local
datastore_name: datastore
state: present
delegate_to: localhost
- name: Create Subscribed Content Library
community.vmware.vmware_content_library_manager:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
library_name: test-content-lib
library_description: 'Subscribed Library with Datastore Backing'
library_type: subscribed
datastore_name: datastore
subscription_url: 'https://library.url'
ssl_thumbprint: 'aa:bb:cc:dd:ee:ff:gg:hh:ii:jj:kk:ll:mm:nn:oo:pp:qq:rr:ss:tt'
update_on_demand: true
state: present
delegate_to: localhost
- name: Update Content Library
community.vmware.vmware_content_library_manager:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
library_name: test-content-lib
library_description: 'Library with Datastore Backing'
state: present
delegate_to: localhost
- name: Delete Content Library
community.vmware.vmware_content_library_manager:
hostname: '{{ vcenter_hostname }}'
username: '{{ vcenter_username }}'
password: '{{ vcenter_password }}'
library_name: test-content-lib
state: absent
delegate_to: localhost
返回值
常见的返回值已在此处记录,以下是此模块特有的字段
键 |
描述 |
---|---|
库创建成功和库 ID 返回:成功时 示例: |