community.general.smartos_image_info (8.5.0) — module

Get SmartOS image details

Authors: Adam Števko (@xen0l)

Install collection

Install with ansible-galaxy collection install community.general:==8.5.0


Add to requirements.yml

  collections:
    - name: community.general
      version: 8.5.0

Description

Retrieve information about all installed images on SmartOS.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Return information about all installed images
  community.general.smartos_image_info:
  register: result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Return all private active Linux images
  community.general.smartos_image_info:
    filters: "os=linux state=active public=false"
  register: result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Show, how many clones does every image have
  community.general.smartos_image_info:
  register: result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- 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 }}"
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- 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 }}"

Inputs

    
filters:
    description:
    - Criteria for selecting image. Can be any value from image manifest and C(published_date),
      C(published), C(source), C(clones), and C(size). More information can be found at
      U(https://smartos.org/man/1m/imgadm) under C(imgadm list).
    type: str