theforeman.foreman.compute_attribute 模块 – 管理计算属性

注意

此模块是 theforeman.foreman 集合 (版本 4.2.0) 的一部分。

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

要安装它,请使用:ansible-galaxy collection install theforeman.foreman。您需要进一步的要求才能使用此模块,请参阅 要求 以了解详细信息。

要在 playbook 中使用它,请指定:theforeman.foreman.compute_attribute

theforeman.foreman 1.0.0 中的新增功能

概要

  • 管理计算属性

  • 此 beta 版本可以创建和更新计算属性

别名:foreman_compute_attribute

要求

以下要求需要在执行此模块的主机上满足。

  • requests

参数

参数

注释

compute_profile

字符串 / 必需

计算配置文件的名称

compute_resource

字符串 / 必需

计算资源的名称

password

字符串 / 必需

访问 Foreman 服务器的用户的密码。

如果在任务中未指定值,则将使用环境变量 FOREMAN_PASSWORD 的值。

server_url

字符串 / 必需

Foreman 服务器的 URL。

如果在任务中未指定值,则将使用环境变量 FOREMAN_SERVER_URL 的值。

state

字符串

实体的状态

选项

  • "present" ← (默认)

  • "absent"

username

字符串 / 必需

访问 Foreman 服务器的用户名。

如果在任务中未指定值,则将使用环境变量 FOREMAN_USERNAME 的值。

validate_certs

布尔值

是否验证 Foreman 服务器的 TLS 证书。

如果在任务中未指定值,则将使用环境变量 FOREMAN_VALIDATE_CERTS 的值。

选项

  • false

  • true ← (默认)

vm_attrs

别名:vm_attributes

字典

包含 vm_attrs 数据的哈希

属性

属性

支持

描述

check_mode

支持:完全

可以在 check_mode 中运行并返回更改状态预测,而无需修改实体

diff_mode

支持:完全

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

示例

- name: "Create compute attribute"
  theforeman.foreman.compute_attribute:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    compute_profile: "Test Compute Profile"
    compute_resource: "Test Compute Resource"
    vm_attrs:
      memory_mb: '2048'
      cpu: '2'
    state: present

- name: "Update compute attribute"
  theforeman.foreman.compute_attribute:
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    compute_profile: "Test Compute Profile"
    compute_resource: "Test Compute Resource"
    vm_attrs:
      memory_mb: '1024'
      cpu: '1'
    state: present

返回值

通用返回值记录在这里,以下是此模块特有的字段

描述

entity

字典

受影响实体按其类型分组的最终状态。

返回:成功

compute_attributes

列表 / 元素=字典

计算属性的列表。

返回:成功

attributes

字典

给定计算配置文件和资源组合的有效属性。

返回:成功

compute_profile_id

整数

关联计算配置文件的数据库 ID。

返回:成功

compute_profile_name

字符串

关联计算配置文件的名称。

返回:成功

compute_resource_id

整数

关联计算资源的数据库 ID。

返回:成功

compute_resource_name

字符串

关联计算资源的名称。

返回:成功

created_at

字符串

计算属性的创建日期。

返回:成功

id

整数

计算属性的数据库 ID。

返回:成功

name

字符串

为计算属性生成的友好名称。

返回:成功

provider_friendly_name

字符串

计算资源的提供程序类型的名称。

返回:成功

updated_at

字符串

上次更改计算属性的日期。

返回:成功

vm_attrs

字典

配置的属性。

返回:成功

作者

  • Manisha Singhal (@Manisha15) ATIX AG