custom_image_check.yaml 260 B

123456789
  1. ---
  2. - name: Try to get image facts
  3. os_image_facts:
  4. image: "{{ image }}"
  5. register: image_result
  6. - name: Check that custom image is available
  7. assert:
  8. that: "image_result.ansible_facts.openstack_image"
  9. msg: "Image {{ image }} is not available."