b84d2f8b77
This was missed in the original patch. Change-Id: I991b0563560cf4a0b1feb718951ffdf21ab81856
17 lines
488 B
YAML
17 lines
488 B
YAML
---
|
|
- name: Check mariadb 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 }}"
|
|
dimensions: "{{ item.value.dimensions }}"
|
|
when:
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
with_dict: "{{ mariadb_services }}"
|
|
notify:
|
|
- "restart {{ item.key }}"
|