![caoyuan](/assets/img/avatar_default.png)
With the more recent versions of ansible, we should now use "is" instead of the "|" This should update it. Change-Id: I6fba56fca182349972e8b0ee5452b37aa4090e0c
12 lines
306 B
YAML
12 lines
306 B
YAML
---
|
|
- name: Pulling Kibana image
|
|
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 is bool
|
|
with_dict: "{{ kibana_services }}"
|