30 lines
1.3 KiB
YAML
30 lines
1.3 KiB
YAML
---
|
|
- name: Restart glance-api container
|
|
vars:
|
|
service_name: "glance-api"
|
|
service: "{{ glance_services[service_name] }}"
|
|
config_json: "{{ glance_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
glance_conf: "{{ glance_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
policy_overwriting: "{{ glance_policy_overwriting.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
glance_api_container: "{{ check_glance_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
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|reject('equalto', '')|list }}"
|
|
dimensions: "{{ service.dimensions }}"
|
|
when:
|
|
- kolla_action != "config"
|
|
- inventory_hostname in glance_api_hosts
|
|
- service.enabled | bool
|
|
- config_json.changed | bool
|
|
or glance_cache_conf.changed | bool
|
|
or glance_conf.changed | bool
|
|
or glance_swift_conf.changed | bool
|
|
or policy_overwriting.changed | bool
|
|
or glance_api_container.changed | bool
|
|
or glance_upgrading | bool
|