a13d83400f
Changes name of ansible module kolla_docker to kolla_container. Change-Id: I13c676ed0378aa721a21a1300f6054658ad12bc7 Signed-off-by: Martin Hiner <m.hiner@partner.samsung.com>
17 lines
494 B
YAML
17 lines
494 B
YAML
---
|
|
- name: Stopping nova cell services
|
|
become: true
|
|
kolla_container:
|
|
action: "stop_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ item.value.container_name }}"
|
|
with_dict: "{{ nova_cell_services }}"
|
|
when:
|
|
- "'nova-compute' not in item.key"
|
|
- item.key in nova_cell_services_require_nova_conf
|
|
- inventory_hostname in groups[item.value.group]
|
|
- item.value.enabled | bool
|
|
- nova_safety_upgrade | bool
|
|
|
|
- import_tasks: rolling_upgrade.yml
|