theforeman.foreman.redhat_manifest 模块 – 与 Red Hat Satellite 订阅清单交互

注意

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

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

要安装它,请使用:ansible-galaxy collection install theforeman.foreman

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

theforeman.foreman 1.0.0 中的新功能

概要

  • 下载并修改 Red Hat Satellite 订阅清单

参数

参数

注释

content_access_mode

字符串

订阅清单的内容访问模式。

设置 content_access_mode=org_enviroment 启用简单内容访问。

选项

  • "org_environment"

  • "entitlement" ← (默认)

名称

字符串

清单名称

密码

字符串 / 必需

Red Hat Portal 密码

路径

路径

导出清单的路径

pool_id

字符串

订阅池 ID

pool_state

字符串

订阅状态

选项

  • "present" ← (默认)

  • "absent"

portal

字符串

Red Hat Portal 订阅访问地址

默认值: "https://subscription.rhsm.redhat.com"

数量

整数

pool_id 订阅的数量

默认值: 1

状态

字符串

清单状态

选项

  • "present" ← (默认)

  • "absent"

用户名

字符串 / 必需

Red Hat Portal 用户名

uuid

字符串

清单 UUID

validate_certs

布尔值

验证 Portal SSL

选项

  • false

  • true ← (默认)

示例

- name: Create foreman.example.com Manifest and add 7 sub
  theforeman.foreman.redhat_manifest:
    name: "foreman.example.com"
    username: "john-smith"
    password: "changeme"
    pool_id: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    quantity: 7

- name: Ensure my manifest has 10 of one subs in it and export
  theforeman.foreman.redhat_manifest:
    uuid: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
    username: john-smith
    password: changeme
    pool_id: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    quantity: 10
    path: /root/manifest.zip

- name: Remove all of one subs from foreman.example.com
  theforeman.foreman.redhat_manifest:
    name: foreman.example.com
    username: john-smith
    password: changeme
    pool_id: XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    pool_state: absent

返回值

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

描述

uuid

字符串

在 theforeman.foreman 3.8.0 中添加

清单 UUID

返回: 成功

示例: "5349d1d0-5bda-480a-b7bd-ff41e2c29e03"

作者

  • Sean O’Keeffe (@sean797)