ansible.builtin.smartos_image_facts (v2.8.20) — module

Get SmartOS image details.

| "added in version" 2.2 of ansible.builtin"

Authors: Adam Števko (@xen0l)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.8.20

Description

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

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Return facts about all installed images.
- smartos_image_facts:
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Return all private active Linux images.
- smartos_image_facts: filters="os=linux state=active public=false"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Show, how many clones does every image have.
- smartos_image_facts:
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- debug: msg="{{ smartos_images[item]['name'] }}-{{smartos_images[item]['version'] }}
            has {{ smartos_images[item]['clones'] }} VM(s)"
  with_items: "{{ smartos_images.keys() }}"

Inputs

    
filters:
    description:
    - 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 U(https://smartos.org/man/1m/imgadm)
      under 'imgadm list'.