community.general.ilo_redfish_info 模块 – 通过 iLO 使用 Redfish API 收集服务器信息

注意

此模块是 community.general 集合(版本 10.1.0)的一部分。

如果您正在使用 ansible 包,您可能已经安装了这个集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install community.general

要在 playbook 中使用它,请指定:community.general.ilo_redfish_info

community.general 4.2.0 中的新增功能

概要

  • 在本地构建 Redfish URI 并将它们发送到 iLO 以获取信息。

  • 用于需要 Redfish OEM 扩展的 HPE iLO 操作。

参数

参数

注释

auth_token

字符串

用于向 iLO 进行身份验证的安全令牌。

baseuri

字符串 / 必需

iLO 的基本 URI。

category

列表 / elements=字符串 / 必需

要在 iLO 上执行的类别列表。

command

列表 / elements=字符串 / 必需

要在 iLO 上执行的命令列表。

password

字符串

用于向 iLO 进行身份验证的密码。

timeout

整数

HTTP 请求到 iLO 的超时时间(以秒为单位)。

默认值: 10

username

字符串

用于向 iLO 进行身份验证的用户名。

属性

属性

支持

描述

check_mode

支持: 完全

此操作不修改状态。

可以在 check_mode 中运行并返回已更改的状态预测,而无需修改目标。

diff_mode

支持: 不适用

此操作不修改状态。

当处于 diff 模式时,将返回有关已更改内容(或可能需要在 check_mode 中更改的内容)的详细信息。

示例

- name: Get iLO Sessions
  community.general.ilo_redfish_info:
    category: Sessions
    command: GetiLOSessions
    baseuri: "{{ baseuri }}"
    username: "{{ username }}"
    password: "{{ password }}"
  register: result_sessions

返回值

常见的返回值记录在此处,以下是此模块特有的字段

描述

ilo_redfish_info

字典

返回 iLO 会话。

返回: 始终

GetiLOSessions

字典

返回 iLO 会话消息以及函数是否成功执行。

返回: 成功

msg

列表 / elements=字典

所有活动 iLO 会话的信息。

返回: 成功

描述

字符串

提供资源的描述。

返回: 成功

Id

字符串

sessionId。

返回: 成功

Name

字符串

资源的名称。

返回: 成功

UserName

字符串

用于登录到管理处理器的名称。

返回: 成功

ret

布尔值

检查变量以查看信息是否成功检索。

返回: 成功

作者

  • Bhavya B (@bhavya06)