
Database-backed sessions are scalable (using an appropriate database strategy), persistent, and can be made high-concurrency and highly-available [0] Default is off. [0] http://docs.openstack.org/developer/horizon/topics/deployment.html#database Co-Authored-By: Vladislav Belogrudov <vladislav.belogrudov@oracle.com> Closes-Bug: 1618781 Change-Id: Ib68a21397dc020d20e07dcc51d3d0fdc1de102ff
29 lines
894 B
YAML
29 lines
894 B
YAML
---
|
|
project_name: "horizon"
|
|
|
|
####################
|
|
# Database
|
|
####################
|
|
horizon_database_name: "horizon"
|
|
horizon_database_user: "horizon"
|
|
horizon_database_address: "{{ kolla_internal_fqdn }}:{{ database_port }}"
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
horizon_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-horizon"
|
|
horizon_tag: "{{ openstack_release }}"
|
|
horizon_image_full: "{{ horizon_image }}:{{ horizon_tag }}"
|
|
|
|
|
|
####################
|
|
# OpenStack
|
|
####################
|
|
openstack_horizon_auth: "{'auth_url':'{{ openstack_auth.auth_url }}','username':'{{ openstack_auth.username }}','password':'{{ openstack_auth.password }}','project_name':'{{ openstack_auth.project_name }}'}"
|
|
|
|
|
|
####################
|
|
# Horizon
|
|
####################
|
|
horizon_openstack_keystone_default_role: "_member_"
|