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

12 lines
302 B
YAML

---
- name: Pulling Openvswitch images
become: true
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ item.value.image }}"
when:
- item.value.enabled | bool
- item.value.host_in_groups | bool
with_dict: "{{ openvswitch_services }}"