Skip to content
Snippets Groups Projects
upgrade.yml 491 B
Newer Older
- name: Stopping nova cell services
  kolla_docker:
    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