theforeman.foreman.content_export_info 模块 – 列出内容导出

注意

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

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

要安装它,请使用: ansible-galaxy collection install theforeman.foreman。您需要其他要求才能使用此模块,有关详细信息,请参阅 需求

要在剧本中使用它,请指定: theforeman.foreman.content_export_info

theforeman.foreman 3.5.0 中的新增功能

概要

  • 列出有关内容导出的信息。

需求

以下是执行此模块的主机所需的条件。

  • requests

参数

参数

注释

content_view

字符串

内容视图名称。

content_view_version

字符串

内容视图版本。

destination_server

字符串

目标服务器名称

id

整数

导出历史记录标识符。

location

字符串

用于限定搜索范围的位置标签。

organization

字符串 / 必需

用于限定搜索范围的组织名称。

password

字符串 / 必需

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

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

字符串

要使用的搜索查询

如果为 None,则返回所有资源。

server_url

字符串 / 必需

Foreman 服务器的 URL。

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

type

字符串

指定完整导出或增量导出。

选项

  • "complete"

  • "incremental"

username

字符串 / 必需

访问 Foreman 服务器的用户名。

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

validate_certs

布尔值

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

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

选项

  • false

  • true ← (默认)

属性

属性

支持

描述

check_mode

支持:完全支持

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

diff_mode

支持:完全支持

在差异模式下,将返回有关已更改内容(或在 check_mode 下可能需要更改的内容)的详细信息

示例

- name: "List all full exports in the organization"
  theforeman.foreman.content_export_info:
    organization: "Default Organization"
    type: complete
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
- name: "Get a specific export history and register the result for the next task"
  vars:
    organization_name: "Export Org"
  theforeman.foreman.content_export_info:
    id: 29
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    organization: "Default Organization"
  register: result
- name: "Write metadata.json to disk using data from the previous task"
  vars:
    metadata: "{{ result['content_exports'][0]['metadata'] }}"
  ansible.builtin.copy:
    content: "{{ metadata }}"
    dest: ./metadata.json
- name: "List all exports of a specific content view version"
  theforeman.foreman.content_export_info:
    content_view: RHEL8
    content_view_version: '1.0'
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    organization: "Default Organization"
- name: "List all exports marked for a specific destination server"
  theforeman.foreman.content_export_info:
    destination_server: "airgapped.example.com"
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    organization: "Default Organization"
- name: "List incremental exports of a specific content view marked for a specific destination server"
  theforeman.foreman.content_export_info:
    content_view: RHEL8
    destination_server: "airgapped.example.com"
    type: incremental
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    organization: "Default Organization"
- name: "List all exports of a specific content view marked for a specific destination server"
  theforeman.foreman.content_export_info:
    content_view: RHEL8
    destination_server: "airgapped.example.com"
    username: "admin"
    password: "changeme"
    server_url: "https://foreman.example.com"
    organization: "Default Organization"

作者

  • Jeremy Lenz (@jeremylenz)