summaryrefslogtreecommitdiffstats
path: root/roles/openshift_openstack/tasks/custom_image_check.yaml
diff options
context:
space:
mode:
authorTomas Sedovic <tomas@sedovic.cz>2017-11-02 10:15:42 +0100
committerTomas Sedovic <tomas@sedovic.cz>2017-11-07 14:35:47 +1100
commitbde35d577f4ccb786a65a84142fabe90eb903599 (patch)
tree33c2e622701348b8d5d90a88749e2acee6d7d092 /roles/openshift_openstack/tasks/custom_image_check.yaml
parentf462e7a682cb65085864d7eff4b7898fe8555a75 (diff)
downloadopenshift-bde35d577f4ccb786a65a84142fabe90eb903599.tar.gz
openshift-bde35d577f4ccb786a65a84142fabe90eb903599.tar.bz2
openshift-bde35d577f4ccb786a65a84142fabe90eb903599.tar.xz
openshift-bde35d577f4ccb786a65a84142fabe90eb903599.zip
Use the default `item` loop variable for checks
Diffstat (limited to 'roles/openshift_openstack/tasks/custom_image_check.yaml')
-rw-r--r--roles/openshift_openstack/tasks/custom_image_check.yaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_openstack/tasks/custom_image_check.yaml b/roles/openshift_openstack/tasks/custom_image_check.yaml
index 4fbd6a687..4ae163406 100644
--- a/roles/openshift_openstack/tasks/custom_image_check.yaml
+++ b/roles/openshift_openstack/tasks/custom_image_check.yaml
@@ -1,10 +1,10 @@
---
- name: Try to get image facts
os_image_facts:
- image: "{{ image }}"
+ image: "{{ item }}"
register: image_result
- name: Check that custom image is available
assert:
that: "image_result.ansible_facts.openstack_image"
- msg: "Image {{ image }} is not available."
+ msg: "Image {{ item }} is not available."