--- - 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"