
This change applies a few minor changes to update the local_settings.py config file for the kilo release. In Kilo, Horizon's exceptions and configuration around exceptions, was refactored. This eliminates the need for us to specify which exceptions are recoverable, not found, and unauthorized. By removing it from the HORIZON_CONFIG variable in local_settings.py, we defer to the default list which is rather large already without having to copy it into our source tree. Detailed change list: - Updated comment for CONSOLE_TYPE setting to include the new SERIAL type - Added the HORIZON_CONFIG['disable_password_reveal'] option - Added the DROPDOWN_MAX_ITEMS option - Added the ENFORCE_PASSWORD_CHECK option - Added the AUTHENTICATION_URLS option - Added the LAUNCH_INSTANCE options - Added the SWIFT_FILE_TRANSFER_CHUNK_SIZE option - Added the OPENSTACK_ENABLE_PASSWORD_RETRIEVE option - Added the SSO options (stubbed for now) - Updated the HORIZON_CONFIG option - Updated the OPENSTACK_NEUTRON_NETWORK option Co-Authored By: Ian Cordasco <ian.cordasco@rackspace.com> Partially implements blueprint: master-kilofication Change-Id: I3cb9054447bf356444f3458935e2ba661f5e7f2c
96 lines
2.3 KiB
YAML
96 lines
2.3 KiB
YAML
---
|
|
# Copyright 2014, Rackspace US, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
# Defines that the role will be deployed on a host machine
|
|
is_metal: true
|
|
|
|
## Verbosity Options
|
|
debug: False
|
|
verbose: True
|
|
|
|
## System info
|
|
horizon_system_user_name: horizon
|
|
horizon_system_group_name: www-data
|
|
horizon_system_shell: /bin/false
|
|
horizon_system_comment: horizon system user
|
|
horizon_system_user_home: "/var/lib/{{ horizon_system_user_name }}"
|
|
|
|
## Service Type and Data
|
|
horizon_service_region: RegionOne
|
|
horizon_service_name: horizon
|
|
|
|
## DB info
|
|
horizon_galera_database: dash
|
|
horizon_galera_user: dash
|
|
|
|
|
|
## Horizon Help URL Path
|
|
horizon_help_url: http://docs.openstack.org
|
|
|
|
## Installation directories
|
|
horizon_lib_dir: /usr/local/lib/python2.7/dist-packages
|
|
|
|
horizon_endpoint_type: internalURL
|
|
|
|
horizon_server_name: "horizon"
|
|
horizon_log_level: info
|
|
horizon_self_signed: true
|
|
horizon_self_signed_regen: false
|
|
horizon_dropdown_max_items: 30
|
|
horizon_time_zone: UTC
|
|
horizon_enforce_password_check: False
|
|
horizon_disable_password_reveal: False
|
|
horizon_enable_password_retrieve: False
|
|
|
|
## Horizon SSL
|
|
### Set the cacert pem if you'd like horizon to verify it.
|
|
# horizon_cacert_pem: /path/to/cacert.pem
|
|
horizon_ssl_cert: /etc/ssl/certs/apache.cert
|
|
horizon_ssl_key: /etc/ssl/private/apache.key
|
|
horizon_ssl_cert_path: /etc/ssl/certs
|
|
|
|
## Launch instance
|
|
horizon_launch_instance_legacy: True
|
|
horizon_launch_instance_ng: False
|
|
|
|
## Swift
|
|
horizon_swift_file_transfer_chunk_size: 524288
|
|
|
|
horizon_webroot: /
|
|
|
|
horizon_listen_ports:
|
|
- "80"
|
|
- "443"
|
|
|
|
horizon_apt_packages:
|
|
- apache2
|
|
- apache2-utils
|
|
- libapache2-mod-wsgi
|
|
- libssl-dev
|
|
- libxslt1.1
|
|
- openssl
|
|
|
|
horizon_pip_packages:
|
|
- django-appconf
|
|
- greenlet
|
|
- horizon
|
|
- keystonemiddleware
|
|
- MySQL-python
|
|
- oslo.config
|
|
- ply
|
|
- pycrypto
|
|
- python-memcached
|
|
- python-keystoneclient
|