30be04ea91
Add become to all tasks that use the module "kolla_docker" Change-Id: I4309c4011687b88ec31d739fd8f834fe2326ff10 Partial-Implements: blueprint ansible-specific-task-become
23 lines
726 B
YAML
23 lines
726 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
|
|
become: true
|
|
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
|