f5b5260866
glance_upgrading variable is defined only during rolling upgrades, but its value is checked on every call to "Restart glance-api container" handler. Closes-Bug: #1826511 Change-Id: Idc95306c50a09666ac0a12e975307a42aef9e352
31 lines
1.4 KiB
YAML
31 lines
1.4 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 is defined and glance_upgrading | bool )
|
|
or ( glance_api_ceph_files is defined and glance_api_ceph_files.changed | bool )
|