theforeman.foreman.host_power 模块 – 管理主机电源状态
注意
此模块是 theforeman.foreman 集合 (版本 4.2.0) 的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install theforeman.foreman
。您需要其他要求才能使用此模块,请参阅 要求 了解详细信息。
要在 playbook 中使用它,请指定:theforeman.foreman.host_power
。
theforeman.foreman 1.0.0 中的新增功能
概要
管理主机的电源状态
此 beta 版本可以启动和停止现有的 Foreman 主机,并查询当前的电源状态。
别名: foreman_host_power
要求
在执行此模块的主机上需要以下要求。
requests
参数
参数 |
注释 |
---|---|
主机的名称 (FQDN) |
|
访问 Foreman 服务器的用户的密码。 如果未在任务中指定该值,则将使用环境变量 |
|
Foreman 服务器的 URL。 如果未在任务中指定该值,则将使用环境变量 |
|
所需的电源状态 选择
|
|
访问 Foreman 服务器的用户名。 如果未在任务中指定该值,则将使用环境变量 |
|
是否验证 Foreman 服务器的 TLS 证书。 如果未在任务中指定该值,则将使用环境变量 选择
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完全 |
可以在 check_mode 中运行并返回更改状态预测,而无需修改实体 |
|
支持: 完全 |
在 diff 模式下,将返回有关已更改内容(或可能需要在 check_mode 中更改的内容)的详细信息 |
示例
- name: "Switch a host on"
theforeman.foreman.host_power:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
hostname: "test-host.domain.test"
state: 'on'
- name: "Switch a host off"
theforeman.foreman.host_power:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
hostname: "test-host.domain.test"
state: 'off'
- name: "Query host power state"
theforeman.foreman.host_power:
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
hostname: "test-host.domain.test"
state: state
register: result
- debug:
msg: "Host power state is {{ result.power_state }}"
返回值
常见的返回值记录在这里,以下是此模块独有的字段
键 |
描述 |
---|---|
主机当前的电源状态 返回: 始终 示例: |