kolla-ansible/ansible/roles/zun/tasks/check-containers.yml
wuchunyang 04b970ca08 Use Docker healthchecks for zun services
This change enables the use of Docker healthchecks for zun
services.
Implements: blueprint container-health-check

Change-Id: I32ffa9754820098bb4d3325b25fc7a1a624507d5
2021-03-10 23:24:20 +08:00

22 lines
797 B
YAML

---
- name: Check zun containers
become: true
kolla_docker:
action: "compare_container"
common_options: "{{ docker_common_options }}"
name: "{{ item.value.container_name }}"
image: "{{ item.value.image }}"
privileged: "{{ item.value.privileged | default(False) }}"
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: "{{ zun_services }}"
notify:
# NOTE(yoctozepto): Zun differs from other projects because we want
# to differentiate between config change and container property
# change
- "{{ item.key }} container changed"