Skip to content
Snippets Groups Projects
Commit 810453e7 authored by caoyuan's avatar caoyuan
Browse files

Fix the error when pull keystone image

When pull keystone image, it will failed, msg is "image' is undefined",
this patch fix it.

Change-Id: I510030cc20a44410a847ab0a6ef36effae716975
parent d8180c52
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,8 @@
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ item.image }}"
image: "{{ item.value.image }}"
when:
- inventory_hostname in groups[image.group]
- image.enabled | bool
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ keystone_services }}"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment