community.general.manageiq_tenant 模块 – 管理 ManageIQ 中的租户
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.general
。您需要更多要求才能使用此模块,请参阅 要求 了解详情。
要在 playbook 中使用它,请指定: community.general.manageiq_tenant
。
概要
manageiq_tenant 模块支持在 ManageIQ 中添加、更新和删除租户。
要求
执行此模块的主机需要满足以下要求。
manageiq-client
manageiq-client https://github.com/ManageIQ/manageiq-api-client-python/
参数
参数 |
注释 |
---|---|
租户描述。 |
|
ManageIQ 连接配置信息。 |
|
CA 捆绑文件或包含证书的目录的路径。 |
|
ManageIQ 密码。如果设置了 |
|
ManageIQ 令牌。如果设置了 |
|
ManageIQ 环境 URL。如果设置了 |
|
ManageIQ 用户名。如果设置了 |
|
是否应验证 HTTPS 请求的 SSL 证书。 选项
|
|
租户名称。 |
|
父租户的名称。如果未提供且未提供 |
|
租户配额。 所有参数区分大小写。 有效的属性是
默认值: |
|
absent - 租户不应存在,present - 租户应存在。 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:无 |
可以在 |
|
支持:无 |
当处于差异模式时,将返回有关已更改内容(或可能需要在 |
示例
- name: Update the root tenant in ManageIQ
community.general.manageiq_tenant:
name: 'My Company'
description: 'My company name'
manageiq_connection:
url: 'http://127.0.0.1:3000'
username: 'admin'
password: 'smartvm'
validate_certs: false # only do this when you trust the network!
- name: Create a tenant in ManageIQ
community.general.manageiq_tenant:
name: 'Dep1'
description: 'Manufacturing department'
parent_id: 1
manageiq_connection:
url: 'http://127.0.0.1:3000'
username: 'admin'
password: 'smartvm'
validate_certs: false # only do this when you trust the network!
- name: Delete a tenant in ManageIQ
community.general.manageiq_tenant:
state: 'absent'
name: 'Dep1'
parent_id: 1
manageiq_connection:
url: 'http://127.0.0.1:3000'
username: 'admin'
password: 'smartvm'
validate_certs: false # only do this when you trust the network!
- name: Set tenant quota for cpu_allocated, mem_allocated, remove quota for vms_allocated
community.general.manageiq_tenant:
name: 'Dep1'
parent_id: 1
quotas:
- cpu_allocated: 100
- mem_allocated: 50
- vms_allocated: null
manageiq_connection:
url: 'http://127.0.0.1:3000'
username: 'admin'
password: 'smartvm'
validate_certs: false # only do this when you trust the network!
- name: Delete a tenant in ManageIQ using a token
community.general.manageiq_tenant:
state: 'absent'
name: 'Dep1'
parent_id: 1
manageiq_connection:
url: 'http://127.0.0.1:3000'
token: 'sometoken'
validate_certs: false # only do this when you trust the network!
返回值
常见返回值记录在 此处,以下是此模块特有的字段
键 |
描述 |
---|---|
租户。 返回:成功 |
|
租户描述 返回:成功 |
|
租户 ID 返回:成功 |
|
租户名称 返回:成功 |
|
父租户的 ID 返回:成功 |
|
租户配额列表 返回:成功 示例: |