kolla-ansible/ansible/roles/common/tasks/pull.yml
Xinliang Liu 1d36adcb4f Make fluentd enabled configurable
Although there is an option "enable_fluentd", but there are still
some tasks that make fluentd not configurable.

Change-Id: Ic0a9deb36fce154022925d26411e01a8ffe18b50
Signed-off-by: Xinliang Liu <xinliang.liu@linaro.org>
2017-12-15 10:24:12 +08:00

10 lines
238 B
YAML

---
- name: Pulling common images
kolla_docker:
action: "pull_image"
common_options: "{{ docker_common_options }}"
image: "{{ item.value.image }}"
when:
- item.value.enabled | bool
with_dict: "{{ common_services }}"