30be04ea91
Add become to all tasks that use the module "kolla_docker" Change-Id: I4309c4011687b88ec31d739fd8f834fe2326ff10 Partial-Implements: blueprint ansible-specific-task-become
24 lines
759 B
YAML
24 lines
759 B
YAML
---
|
|
- name: Restart horizon container
|
|
vars:
|
|
service_name: "horizon"
|
|
service: "{{ horizon_services[service_name] }}"
|
|
become: true
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
environment: "{{ service.environment }}"
|
|
volumes: "{{ service.volumes }}"
|
|
when:
|
|
- kolla_action != "config"
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
- horizon_config_json | changed
|
|
or horizon_conf | changed
|
|
or horizon_local_settings | changed
|
|
or horizon_custom_local_settings | changed
|
|
or policy_jsons | changed
|
|
or check_horizon_container | changed
|