ngine_io.cloudstack.cs_iso 模块 – 管理基于 Apache CloudStack 的云上的 ISO 镜像。

注意

此模块是 ngine_io.cloudstack 集合(版本 2.5.0)的一部分。

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

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

要在 playbook 中使用它,请指定:ngine_io.cloudstack.cs_iso

ngine_io.cloudstack 0.1.0 中的新增功能

概要

  • 注册和删除 ISO 镜像。

要求

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

  • python >= 2.6

  • cs >= 0.9.0

参数

参数

注释

account

string

ISO 所关联的帐户。

api_http_method

string

用于查询 API 端点的 HTTP 方法。

如果未给出,则考虑 CLOUDSTACK_METHOD 环境变量。

选项

  • "get" ←(默认)

  • "post"

api_key

string / 必填

CloudStack API 的 API 密钥。

如果未给出,则考虑 CLOUDSTACK_KEY 环境变量。

api_secret

string / 必填

CloudStack API 的密钥。

如果未设置,则考虑 CLOUDSTACK_SECRET 环境变量。

api_timeout

integer

HTTP 超时(以秒为单位)。

如果未给出,则考虑 CLOUDSTACK_TIMEOUT 环境变量。

默认值: 10

api_url

string / 必填

CloudStack API 的 URL,例如 https://cloud.example.com/client/api

如果未给出,则考虑 CLOUDSTACK_ENDPOINT 环境变量。

api_verify_ssl_cert

string

验证 CA 授权证书文件。

如果未给出,则考虑 CLOUDSTACK_VERIFY 环境变量。

bootable

boolean

注册 ISO 为可引导。仅当存在 state 时使用。

选项

  • false

  • true

checksum

string

此 ISO 的 MD5 校验和值。如果设置,我们将按校验和而不是名称搜索。

cross_zones

boolean

ISO 是否应该在区域之间同步或删除。

zone 互斥。

选项

  • false ←(默认)

  • true

display_text

string

ISO 的显示文本。

如果未指定,将使用 name

domain

string

ISO 所关联的域。

is_dynamically_scalable

boolean

注册安装了 XS/VMware 工具的 ISO,以便支持 VM CPU/内存的动态缩放。仅当存在 state 时使用。

选项

  • false

  • true

boolean

注册 ISO 为精选。仅当存在 state 时使用。

选项

  • false

  • true

is_public

boolean

注册 ISO 以供所有用户公开使用。仅当存在 state 时使用。

选项

  • false

  • true

is_ready

boolean

此标志用于搜索现有 ISO。如果设置为 yes,它将仅列出准备好部署的 ISO,例如,已成功下载并安装。建议将其设置为 no

选项

  • false ←(默认)

  • true

iso_filter

string

用于搜索 ISO 的过滤器名称。

选项

  • "featured"

  • "self" ←(默认)

  • "selfexecutable"

  • "sharedexecutable"

  • "executable"

  • "community"

name

string / 必填

ISO 的名称。

os_type

string

最能代表此 ISO 的操作系统的操作系统名称。如果 ISO 是可引导的,则需要传递此参数。如果存在 state,则为必填项。

poll_async

boolean

轮询异步作业直到作业完成。

选项

  • false

  • true ←(默认)

project

string

要在其中注册 ISO 的项目名称。

state

string

ISO 的状态。

选项

  • "present" ←(默认)

  • "absent"

tags

别名:tag

list / elements=dictionary

标签列表。标签是具有键 keyvalue 的字典列表。

要删除所有标签,请设置一个空列表,例如 tags: []

url

string

可以从中下载 ISO 的 URL。如果存在 state,则为必填项。

validate_certs

boolean

在 ngine_io.cloudstack 2.4.0 中添加

如果 false,则不会验证 SSL 证书。

如果未给出,则考虑 CLOUDSTACK_DANGEROUS_NO_TLS_VERIFY 环境变量。

这应该仅在个人控制的站点上使用自签名证书。

选项

  • false

  • true ←(默认)

zone

string

您希望从中注册或删除 ISO 的区域的名称。

cross_zonesno 时为必填项

备注

注意

  • 有关 CloudStack 模块的详细指南,请参阅 CloudStack 云指南

  • 此模块支持检查模式。

示例

- name: Register an ISO if ISO name does not already exist
  ngine_io.cloudstack.cs_iso:
    name: Debian 7 64-bit
    zone: zone01
    url: http://mirror.switch.ch/ftp/mirror/debian-cd/current/amd64/iso-cd/debian-7.7.0-amd64-netinst.iso
    os_type: Debian GNU/Linux 7(64-bit)

- name: Register an ISO with given name if ISO md5 checksum does not already exist
  ngine_io.cloudstack.cs_iso:
    name: Debian 7 64-bit
    zone: zone01
    url: http://mirror.switch.ch/ftp/mirror/debian-cd/current/amd64/iso-cd/debian-7.7.0-amd64-netinst.iso
    os_type: Debian GNU/Linux 7(64-bit)
    checksum: 0b31bccccb048d20b551f70830bb7ad0

- name: Remove an ISO by name
  ngine_io.cloudstack.cs_iso:
    name: Debian 7 64-bit
    zone: zone01
    state: absent

- name: Remove an ISO by checksum
  ngine_io.cloudstack.cs_iso:
    name: Debian 7 64-bit
    zone: zone01
    checksum: 0b31bccccb048d20b551f70830bb7ad0
    state: absent

返回值

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

描述

account

string

ISO 所关联的帐户。

返回: 成功

示例: "example account"

bootable

boolean

如果 ISO 是可引导的,则为 True。

返回: 成功

示例: true

checksum

string

ISO 的 MD5 校验和。

返回: 成功

示例: "0b31bccccb048d20b551f70830bb7ad0"

已创建

string

注册日期。

返回: 成功

示例: "2015-03-29T14:57:06+0200"

cross_zones

boolean

如果 ISO 在所有区域中管理,则为 true,否则为 false。

返回: 成功

示例: false

display_text

string

ISO 的显示文本。

返回: 成功

示例: "Debian 7.7 64-bit minimal 2015-03-19"

domain

string

ISO 所关联的域。

返回: 成功

示例: "example domain"

格式

string

ISO 的格式。

返回: 成功

示例: "ISO"

ID

string

ISO 的 UUID。

返回: 成功

示例: "a6f7a5fc-43f8-11e5-a151-feff819cdc9f"

boolean

如果 ISO 是精选的,则为 True。

返回: 成功

示例: true

is_public

boolean

如果 ISO 是公开的,则为 True。

返回: 成功

示例: true

is_ready

boolean

如果 ISO 可以部署,则为 True。

返回: 成功

示例: true

name

string

ISO 的名称。

返回: 成功

示例: "Debian 7 64-bit"

os_type

string

操作系统的类型。

返回: 成功

示例: "CentOS 6.5 (64-bit)"

project

string

ISO 所关联的项目。

返回: 成功

示例: "example project"

状态

string

ISO 的状态。

返回: 成功

示例: "Successfully Installed"

标签

字典

与 ISO 关联的资源标签列表。

返回: 成功

示例: "[ { \"key\": \"foo\", \"value\": \"bar\" } ]"

zone

string

ISO 注册的区域名称。

返回: 成功

示例: "zuerich"

作者

  • René Moser (@resmo)