kolla-ansible/ansible/roles/keystone/tasks/pull.yml
caoyuan 810453e7ef 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
2017-01-18 13:38:50 +08:00

11 lines
295 B
YAML

---
- name: Pulling keystone images
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ item.value.image }}"
when:
- inventory_hostname in groups[item.value.group]
- item.value.enabled | bool
with_dict: "{{ keystone_services }}"