d516ad7da2
kolla-ansible should provide a mechanism to allow operators to overwrite the default (or not exposed through configuration) options for the local_settings. local_settings.j2 may be good place to configure horizon but requires operator to sync it every release. custom_local_settings.j2 can be used to overwrite things from local_settings.j2 without a need of syncing it first. This patch also adds a release note and a documentation section under the advanced configuration page. Partial-Bug: #1769970 Depends-On: https://review.openstack.org/#/c/567006/ Change-Id: I84b54ba737276114e512d4577ac4b9010682bb98
23 lines
744 B
YAML
23 lines
744 B
YAML
---
|
|
- name: Restart horizon container
|
|
vars:
|
|
service_name: "horizon"
|
|
service: "{{ horizon_services[service_name] }}"
|
|
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
|