community.general.smartos_image_info 模块 – 获取 SmartOS 镜像详细信息
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您使用的是 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定:community.general.smartos_image_info
。
概要
检索 SmartOS 上所有已安装镜像的信息。
参数
参数 |
注释 |
---|---|
选择镜像的条件。可以是镜像清单中的任何值,以及 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全支持 在 community.general 3.3.0 中添加 此操作不会修改状态。 |
可以在 |
|
支持: N/A 此操作不会修改状态。 |
处于 diff 模式时,将返回有关已更改内容(或可能需要在 |
示例
- name: Return information about all installed images
community.general.smartos_image_info:
register: result
- name: Return all private active Linux images
community.general.smartos_image_info:
filters: "os=linux state=active public=false"
register: result
- name: Show, how many clones does every image have
community.general.smartos_image_info:
register: result
- name: Print information
ansible.builtin.debug:
msg: "{{ result.smartos_images[item]['name'] }}-{{ result.smartos_images[item]['version'] }}
has {{ result.smartos_images[item]['clones'] }} VM(s)"
with_items: "{{ result.smartos_images.keys() | list }}"
- name: Print information
ansible.builtin.debug:
msg: "{{ smartos_images[item]['name'] }}-{{ smartos_images[item]['version'] }}
has {{ smartos_images[item]['clones'] }} VM(s)"
with_items: "{{ smartos_images.keys() | list }}"