smartos_image_facts – Get SmartOS image details

From Get docs
Ansible/docs/2.8/modules/smartos image facts module


smartos_image_facts – Get SmartOS image details

New in version 2.2.


Synopsis

  • Retrieve facts about all installed images on SmartOS. Facts will be inserted to the ansible_facts key.

Parameters

Parameter Choices/Defaults Comments

filters

-

Criteria for selecting image. Can be any value from image manifest and 'published_date', 'published', 'source', 'clones', and 'size'. More informaton can be found at https://smartos.org/man/1m/imgadm under 'imgadm list'.



Examples

# Return facts about all installed images.
- smartos_image_facts:

# Return all private active Linux images.
- smartos_image_facts: filters="os=linux state=active public=false"

# Show, how many clones does every image have.
- smartos_image_facts:

- debug: msg="{{ smartos_images[item]['name'] }}-{{smartos_images[item]['version'] }}
            has {{ smartos_images[item]['clones'] }} VM(s)"
  with_items: "{{ smartos_images.keys() }}"

Status

Authors

  • Adam Števko (@xen0l)

Hint

If you notice any issues in this documentation you can edit this document to improve it.


© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.8/modules/smartos_image_facts_module.html