theforeman.foreman.architecture 模块 – 管理架构
注意
此模块是 theforeman.foreman 集合(版本 4.2.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install theforeman.foreman
。您需要进一步的要求才能使用此模块,请参阅 要求 了解详细信息。
要在 playbook 中使用它,请指定:theforeman.foreman.architecture
。
theforeman.foreman 1.0.0 中的新增功能
概要
创建、更新和删除架构
别名:foreman_architecture
要求
执行此模块的主机需要以下要求。
requests
参数
参数 |
注释 |
---|---|
架构名称 |
|
实体应分配到的操作系统列表。 操作系统通过其标题查找,标题的构成形式为“<名称> <主版本号>.<次版本号>”。 只要您只有一个具有该名称的操作系统,就可以省略版本部分。 |
|
访问 Foreman 服务器的用户的密码。 如果未在任务中指定该值,则将使用环境变量 |
|
Foreman 服务器的 URL。 如果未在任务中指定该值,则将使用环境变量 |
|
实体的状态 选项
|
|
新的架构名称。设置此参数后,该模块将不是幂等的。 |
|
访问 Foreman 服务器的用户名。 如果未在任务中指定该值,则将使用环境变量 |
|
是否验证 Foreman 服务器的 TLS 证书。 如果未在任务中指定该值,则将使用环境变量 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全 |
可以在 check_mode 中运行并返回更改状态预测,而无需修改实体 |
|
支持:完全 |
在 diff 模式下,将返回已更改(或可能需要在 check_mode 中更改)的详细信息 |
示例
- name: "Create an Architecture"
theforeman.foreman.architecture:
name: "i386"
operatingsystems:
- "TestOS1"
- "TestOS2"
server_url: "https://foreman.example.com"
username: "admin"
password: "changeme"
state: present
- name: "Update an Architecture"
theforeman.foreman.architecture:
name: "i386"
operatingsystems:
- "TestOS3"
- "TestOS4"
server_url: "https://foreman.example.com"
username: "admin"
password: "changeme"
state: present
- name: "Delete an Architecture"
theforeman.foreman.architecture:
name: "i386"
server_url: "https://foreman.example.com"
username: "admin"
password: "changeme"
state: absent
返回值
常见的返回值记录在 此处,以下是此模块特有的字段
键 |
描述 |
---|---|
受影响实体的最终状态,按其类型分组。 已返回:成功 |
|
架构列表。 已返回:成功 |
|
架构的数据库 ID。 已返回:成功 |
|
架构的名称。 已返回:成功 |
|
关联操作系统的数据库 ID。 已返回:成功 |