kayobe/ansible/roles/inspection-store/tasks/stop.yml
Mark Goddard 71c2aa1d90 Add support for stopping overcloud services
Implemented via 'kolla-ansible stop'.

Change-Id: Iaf8db47e70f023b446c17aa61fc8bb89cf7c2b28
Story: 2007467
Task: 39155
2020-03-26 14:34:07 +00:00

10 lines
265 B
YAML

---
- name: Ensure inspection store container is stopped
docker_container:
image: "{{ item.value.image }}"
name: "{{ item.value.container_name }}"
state: "stopped"
with_dict: "{{ inspection_store_services }}"
when:
- item.value.enabled | bool