theforeman.foreman.content_import_version 模块 – 管理内容视图版本内容导入
注意
此模块是 theforeman.foreman 集合(版本 4.2.0)的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。 它不包含在 ansible-core
中。 要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install theforeman.foreman
。 您需要其他要求才能使用此模块,请参阅 要求 了解详细信息。
要在 Playbook 中使用它,请指定:theforeman.foreman.content_import_version
。
theforeman.foreman 4.1.0 中的新增功能
概要
导入内容视图版本。
要求
在执行此模块的主机上需要以下要求。
requests
参数
参数 |
注释 |
---|---|
metadata.json 文件的内容。 如果提供了 metadata_file 位置,则不需要此项。 |
|
metadata.json 文件的位置。 如果已通过其他参数提供元数据,则不需要此项。 |
|
实体所在的组织 |
|
访问 Foreman 服务器的用户的密码。 如果在任务中未指定该值,则将改用环境变量 |
|
包含导出的存储库、版本或库的目录。 |
|
Foreman 服务器的 URL。 如果在任务中未指定该值,则将改用环境变量 |
|
访问 Foreman 服务器的用户名。 如果在任务中未指定该值,则将改用环境变量 |
|
是否验证 Foreman 服务器的 TLS 证书。 如果在任务中未指定该值,则将改用环境变量 选择
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完全 |
可以在 check_mode 中运行并返回已更改的状态预测,而无需修改实体 |
|
支持: 完全 |
当处于 diff 模式时,将返回有关已更改的内容(或在 check_mode 中可能需要更改的内容)的详细信息 |
示例
- name: "Import content view version from metadata"
theforeman.foreman.content_import_version:
path: "/var/lib/pulp/imports/example-content"
metadata: "{{ lookup('file', '/tmp/metadata.json') | from_json }}"
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
organization: "Default Organization"
- name: "Import content view version with specific metadata json"
theforeman.foreman.content_import_version:
path: "/var/lib/pulp/imports/example-content"
metadata_file: "/tmp/metadata.json"
username: "admin"
password: "changeme"
server_url: "https://foreman.example.com"
organization: "Default Organization"