kolla-ansible/ansible/roles/iscsi/tasks/pull.yml

12 lines
304 B
YAML

---
- name: Pulling iscsi images
become: true
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: "{{ iscsi_services }}"