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

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