custom_image_check.yaml 259 B

12345678910
  1. ---
  2. - name: Try to get image facts
  3. os_image_facts:
  4. image: "{{ item }}"
  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 {{ item }} is not available."