summaryrefslogtreecommitdiffstats
path: root/playbooks/openstack/openshift-cluster/custom_image_check.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'playbooks/openstack/openshift-cluster/custom_image_check.yaml')
-rw-r--r--playbooks/openstack/openshift-cluster/custom_image_check.yaml9
1 files changed, 9 insertions, 0 deletions
diff --git a/playbooks/openstack/openshift-cluster/custom_image_check.yaml b/playbooks/openstack/openshift-cluster/custom_image_check.yaml
new file mode 100644
index 000000000..452e1e4d8
--- /dev/null
+++ b/playbooks/openstack/openshift-cluster/custom_image_check.yaml
@@ -0,0 +1,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."