summaryrefslogtreecommitdiffstats
path: root/roles/openshift_openstack/tasks/custom_image_check.yaml
blob: 4fbd6a68738b0c7304999e6bd9f810096af8c1f1 (plain)
1
2
3
4
5
6
7
8
9
10
---
- name: Try to get image facts
  os_image_facts:
    image: "{{ image }}"
  register: image_result

- name: Check that custom image is available
  assert:
    that: "image_result.ansible_facts.openstack_image"
    msg: "Image {{ image }} is not available."