d2d91d9ec1
This change enables the use of Docker healthchecks for senlin services. Implements: blueprint container-health-check Change-Id: I148a0174c46244241580265d0fedc0fb1b92602c
18 lines
587 B
YAML
18 lines
587 B
YAML
---
|
|
- name: Check senlin containers
|
|
become: true
|
|
kolla_docker:
|
|
action: "compare_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
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:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ senlin_services }}"
|
|
notify:
|
|
- "Restart {{ item.key }} container"
|