a836033e14
Co-Authored-By: caoyuan <cao.yuan@99cloud.net> Change-Id: Iddde03760ff85af5263868ebc47b8b9438e92e8e Partially-implements: blueprint better-reconfigure
22 lines
711 B
YAML
22 lines
711 B
YAML
---
|
|
- include: config.yml
|
|
|
|
- set_fact: secondary_addresses={{ hostvars[inventory_hostname]['ansible_' + api_interface].get('ipv4_secondaries', []) | map(attribute='address') | list }}
|
|
|
|
- name: Stopping all slave keepalived containers
|
|
kolla_docker:
|
|
action: "stop_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "keepalived"
|
|
when: kolla_internal_vip_address not in secondary_addresses
|
|
|
|
# Upgrading master keepalived and haproxy
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|
|
when: kolla_internal_vip_address in secondary_addresses
|
|
|
|
# Upgrading slave keepalived and haproxy
|
|
- name: Flush handlers
|
|
meta: flush_handlers
|
|
when: kolla_internal_vip_address not in secondary_addresses
|