04b970ca08
This change enables the use of Docker healthchecks for zun services. Implements: blueprint container-health-check Change-Id: I32ffa9754820098bb4d3325b25fc7a1a624507d5
22 lines
797 B
YAML
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"
|