5190481c08
This patch updates trove configuration tasks to apply custom_config to trove-taskmanager/conductor.conf. Currently only trove.conf is custom-configurable, and the file is to be loaded by trove-api service only. Therefore, we cannot apply custom_config to trove-taskmanager/conductor services. Change-Id: I0a64c4f0df32eb87cd91ebd8eafb512575061413 Closes-Bug: #1706883
64 lines
2.7 KiB
YAML
64 lines
2.7 KiB
YAML
---
|
|
- name: Restart trove-api container
|
|
vars:
|
|
service_name: "trove-api"
|
|
service: "{{ trove_services[service_name] }}"
|
|
config_json: "{{ trove_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
trove_conf: "{{ trove_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
trove_api_container: "{{ check_trove_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
volumes: "{{ service.volumes }}"
|
|
when:
|
|
- action != "config"
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
- config_json.changed | bool
|
|
or trove_conf.changed | bool
|
|
or trove_api_container.changed | bool
|
|
|
|
- name: Restart trove-conductor container
|
|
vars:
|
|
service_name: "trove-conductor"
|
|
service: "{{ trove_services[service_name] }}"
|
|
config_json: "{{ trove_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
trove_conf: "{{ trove_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
trove_conductor_container: "{{ check_trove_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
volumes: "{{ service.volumes }}"
|
|
when:
|
|
- action != "config"
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
- config_json.changed | bool
|
|
or trove_conf.changed | bool
|
|
or trove_conductor_container.changed | bool
|
|
|
|
- name: Restart trove-taskmanager container
|
|
vars:
|
|
service_name: "trove-taskmanager"
|
|
service: "{{ trove_services[service_name] }}"
|
|
config_json: "{{ trove_config_jsons.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
trove_conf: "{{ trove_confs.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
trove_taskmanager_container: "{{ check_trove_containers.results|selectattr('item.key', 'equalto', service_name)|first }}"
|
|
kolla_docker:
|
|
action: "recreate_or_restart_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "{{ service.container_name }}"
|
|
image: "{{ service.image }}"
|
|
volumes: "{{ service.volumes }}"
|
|
when:
|
|
- action != "config"
|
|
- inventory_hostname in groups[service.group]
|
|
- service.enabled | bool
|
|
- config_json.changed | bool
|
|
or trove_conf.changed | bool
|
|
or trove_taskmanager_container.changed | bool
|