summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/openshift-cluster/custom_image_check.yaml
blob: 452e1e4d8987fecce26437d0fe57f2c88c30d4bc (plain)
1
2
3
4
5
6
7
8
9
---
- 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."