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

12 lines
301 B
YAML

---
- name: Pulling etcd image
become: true
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ item.value.image }}"
when:
- item.value.enabled | bool
- inventory_hostname in groups[item.value.group]
with_dict: "{{ etcd_services }}"