7bab7d0d27
This change enables the use of Docker healthchecks for tacker services. Implements: blueprint container-health-check Change-Id: Ib33863e4bf78f73a28d82b222ab349909ebb6671
17 lines
522 B
YAML
17 lines
522 B
YAML
---
|
|
- name: Check tacker container
|
|
become: true
|
|
kolla_docker:
|
|
action: "compare_container"
|
|
name: "{{ item.value.container_name }}"
|
|
image: "{{ item.value.image }}"
|
|
volumes: "{{ item.value.volumes|reject('equalto', '')|list }}"
|
|
dimensions: "{{ item.value.dimensions }}"
|
|
healthcheck: "{{ item.value.healthcheck | default(omit) }}"
|
|
when:
|
|
- item.value.host_in_groups | bool
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ tacker_services }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|