58195bd264
cell0 is already setup in Ocata, when upgrading to Pike is not anymore necessary to create. All nova DBs (nova_api, nova and nova_cell0) are already created in Ocata too. Only bootstrap_service is needed while upgrading. Change-Id: Idc4941334faf91feee868472155a8c8ea0eba436
32 lines
858 B
YAML
32 lines
858 B
YAML
---
|
|
# Create new set of configs on nodes
|
|
- include: config.yml
|
|
|
|
- include: bootstrap_service.yml
|
|
|
|
- include: register.yml
|
|
|
|
- name: Checking if conductor container needs upgrading
|
|
kolla_docker:
|
|
action: "compare_image"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "nova_conductor"
|
|
image: "{{ nova_conductor_image_full }}"
|
|
when: inventory_hostname in groups['nova-conductor']
|
|
register: conductor_differs
|
|
|
|
# Short downtime here, but from user perspective his call will just timeout or execute later
|
|
- name: Stopping all nova_conductor containers
|
|
kolla_docker:
|
|
action: "stop_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "nova_conductor"
|
|
when:
|
|
- inventory_hostname in groups['nova-conductor']
|
|
- conductor_differs['result']
|
|
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|
|
|
|
- include: reload.yml
|