2019-03-22 19:06:37 -06:00
|
|
|
---
|
|
|
|
- name: Check etcd containers
|
|
|
|
become: true
|
2023-11-08 14:17:51 +01:00
|
|
|
kolla_container:
|
2019-03-22 19:06:37 -06:00
|
|
|
action: "compare_container"
|
|
|
|
common_options: "{{ docker_common_options }}"
|
|
|
|
name: "{{ item.value.container_name }}"
|
|
|
|
image: "{{ item.value.image }}"
|
|
|
|
volumes: "{{ item.value.volumes }}"
|
|
|
|
dimensions: "{{ item.value.dimensions }}"
|
|
|
|
environment: "{{ item.value.environment }}"
|
|
|
|
when:
|
|
|
|
- item.value.enabled | bool
|
|
|
|
- inventory_hostname in groups[item.value.group]
|
|
|
|
with_dict: "{{ etcd_services }}"
|
|
|
|
notify:
|
|
|
|
- "Restart {{ item.key }} container"
|