community.general.atomic_host 模块 – 管理 atomic host 平台

注意

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

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

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

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

概要

  • 管理 atomic host 平台。

  • Atomic host 平台的重启应在此模块之外完成。

要求

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

  • atomic

参数

参数

注释

revision

别名:version

字符串

要部署的 atomic host 的版本号。

提供 latest 将升级到最新的可用版本。

默认值: "latest"

属性

属性

支持

描述

check_mode

支持:

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

diff_mode

支持:

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

注释

注意

  • 主机应为 atomic 平台(通过存在“/run/ostree-booted”文件验证)。

示例

- name: Upgrade the atomic host platform to the latest version (atomic host upgrade)
  community.general.atomic_host:
    revision: latest

- name: Deploy a specific revision as the atomic host (atomic host deploy 23.130)
  community.general.atomic_host:
    revision: 23.130

返回值

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

描述

msg

字符串

命令标准输出

返回:总是

示例: "Already on latest"

作者

  • Saravanan KR (@krsacme)